react-native-recaptcha icon indicating copy to clipboard operation
react-native-recaptcha copied to clipboard

Not receiving any response in onExecute

Open PrantikMondal opened this issue 5 years ago • 2 comments

My code is: render() { return ( <View> <ReCaptcha siteKey="MY_SITE_KEY" url='https://www.google.com/recaptcha/api/MY_SITE_KEY' action='verify' reCaptchaType={1} onExecute={(token) => this.captureResponseToken(token)} // I use this function to save the response token but not receiving any response /> </View> ) };

captureResponseToken = (token) => {
    console.log(token)
}

Version: "react-native-recaptcha-v3": "0.0.16", "react-native": "0.61.5", "react": "16.9.0",

Am i doing anything wrong?

PrantikMondal avatar Sep 08 '20 12:09 PrantikMondal

@PrantikMondal I'm also facing the same issue. any luck on this or if you use any another plugin for V3 kindly help?

BajajSaajan avatar Mar 23 '22 17:03 BajajSaajan

Use this library

https://www.npmjs.com/package/react-native-secure-captcha-v3

amitkumarcoding avatar May 09 '24 19:05 amitkumarcoding