We have to migrate from the non enterprise version of recaptcha to enterprise one. What I can see in the documents is that the migration of keys can be carried out using a command. which looks good! however there is a page which says "Using reCAPTCHA Enterprise features after migration" and inside the page we have been asked to instrumenting the pages. But in the project we have integrated recaptcha (already a non enterprise version) I do not have them explicitly mentioned to be instrumented. like below file needs to be replaced by https://recaptchaenterprise.googleapis.com
https://www.google.com/recaptcha/api.js
or any explicit call for any of the API mentioned below needs to be instrumented
grecaptcha.execute() -> grecaptcha.enterprise.execute()
grecaptcha.getResponse() -> grecaptcha.enterprise.getResponse()
grecaptcha.ready() -> grecaptcha.enterprise.ready()
grecaptcha.render() -> grecaptcha.enterprise.render()
grecaptcha.reset() -> grecaptcha.enterprise.reset()
Rather we do have an library included inside BuildConfig.groovy
compile ':recaptcha:1.5.0'
And then keys have been added in config file,
<recaptcha:ifEnabled>
<recaptcha:recaptcha/>
<recaptcha:ifFailed>CAPTCHA Failed: ${session["recaptcha_error"]}</recaptcha:ifFailed>
</recaptcha:ifEnabled>
And then using services like
So I have a question, does only migration of keys to enterprise one is enough.? Once migrated I can use those keys in the application.
Could someone please guide. Thank you!