You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems to work for the most part by simply using "invisible" as the size attribute, but in order for it to work this package needs to implement grecaptcha.execute() so one may call it in the component and get the response token if needed.
The text was updated successfully, but these errors were encountered:
I'm afraid this might break in production (i.e. obfuscated code) due to grecaptcha reference being private. Same could be achieved with
grecaptcha.execute(this.captcha.widget);
but widget reference is also private :)
The riskiest approach is to use
grecaptcha.execute(0);
given that you're sure this is the first reCAPTCHA instance on the page, but it might not be. Anyway, I'll be adding an execute() method as soon as possible, but I need to investigate this further a little bit to ensure that edge cases are covered.
It seems to work for the most part by simply using "invisible" as the size attribute, but in order for it to work this package needs to implement grecaptcha.execute() so one may call it in the component and get the response token if needed.
The text was updated successfully, but these errors were encountered: