We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm having a problem with this scenario:
<ReCaptcha ref={ref => recaptcha = ref} sitekey={siteKey} action='checkout' verifyCallback={filled}/>
I'm having some trouble to get a new token with current interface. I'd like to use something
this.recaptcha.execute() .then(token => /* set new token on request */) .then(() => api.post(/* new data and new token*/))
or simply a new method that refresh the token with a promise something like
this.recaptcha.refresh() // verify is called again when promise is fulfilled .then(() => api.post(/* new data */)) // using the refreshed token
What do you think?
The text was updated successfully, but these errors were encountered:
I've exact same problem.
Sorry, something went wrong.
No branches or pull requests
I'm having a problem with this scenario:
<ReCaptcha ref={ref => recaptcha = ref} sitekey={siteKey} action='checkout' verifyCallback={filled}/>
I'm having some trouble to get a new token with current interface. I'd like to use something
or simply a new method that refresh the token with a promise something like
What do you think?
The text was updated successfully, but these errors were encountered: