Anyone had success with Recaptcha V3?

Did anyone have success integrating Google Recaptcha V3 in their app?

I am using Bubble’s Recaptcha plugin, but it hasn’t been updated for Recaptcha V3 (which has been out for over two and half years now), and I am currently losing customers due to human verification, which is a must for my app to avoid spam.

Thanks.

4 Likes

Hi Akhella,

I agree really needed. I have tried to implement v3 via the LOADERR plugin but no so obvious, not yet successful.

Specifically, I have put the following in the script section (myKey=hidden here…)
https://www.google.com/recaptcha/api.js?render=myKey, https://www.google.com/recaptcha/api.js?render=myKey

And then in the function section, I have used:
function onClick(e) {
e.preventDefault();
grecaptcha.ready(function() {
grecaptcha.execute(‘myKey’, {action: ‘submit’}).then(function(token) {
// Add your logic to submit to your backend server here.
});
});
};
grecaptcha.ready();
grecaptcha.execute();

This originates mostly from the v3 documentation by the way. Then I have added in the workflow of my “signin” button click an action to trigger the LOADERR script. Still some work to do but probably not far…Feel free to help/advance or share your feedback! No code platform where I am sharing code… :slight_smile:

Cheers

@allenyang, are there any plans to upgrade the current Recaptcha Plugin to v3 or add hcaptcha?

2 Likes

Anyone had success with this on Bubble?

3 Likes

This topic was automatically closed after 70 days. New replies are no longer allowed.