![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
cordova-plugin-recaptcha-v2
Advanced tools
A cordova plugin for the reCAPTCHA Android and Web API
Cordova plugin for integrating the SafetyNet Recaptcha API in your Android and Browser platforms.
Plugin version | Cordova | Cordova Android | minSdkVersion | SafetyNet |
---|---|---|---|---|
1.0.0 | >= 10.0.0 | >= 8.0.0 | >= 19 | 18.0.1 |
cordova plugin add cordova-plugin-recaptcha-v2
cordova plugin add cordova-plugin-recaptcha-v2 --variable PLAY_SERVICES_SAFETYNET_VERSION=18.0.1
cordova plugin add https://github.com/andreszs/cordova-plugin-recaptcha-v2
⚠ Note that using Play Services SafetyNet 18.1.0 or newer will enforce a minSdk level of 21, while 18.0.1 still works with minSdk 19.
To invoke the SafetyNet reCAPTCHA API, you call the verify()
method. Usually, this method corresponds to the user's selecting a UI element, such as a button, in your activity.
cordova.plugins.Recaptcha.verify(onSuccess, onFailure, [args])
args | Object with siteKeyAndroid and optional siteKeyWeb strings |
---|---|
siteKeyAndroid | String: A v2 Android site key from the v3 Admin Console. Required for the Android platform. |
siteKeyWeb | String: A v2 Invisible site key from the v3 Admin Console. Optional for the browser platform. |
⚠ As of 2024, you can no longer create new Android site keys from the legacy v3 Admin Console, but you can add your app's package name to existing v2 Android keys and reuse them in any app. This is because the SafetyNet Recaptcha API has been deprecated in favor of the Recaptcha Enterprise API. Note that Enterprise keys do not work with SafetyNet Recaptcha API.
When the reCAPTCHA API executes the onSuccess()
method, the user has successfully completed the CAPTCHA challenge. However, this method only indicates that the user has solved the CAPTCHA correctly. You still need to validate the user's response token from your backend server.
To learn how to validate the user's response token, see Verifying the user's response.
var onSuccess = function (strToken) {
console.log(strToken);
};
var onFailure = function (strError) {
console.warn(strError);
};
var args = {};
args.siteKeyAndroid = YOUR_V2_ANDROID_SITE_KEY;
args.siteKeyWeb = YOUR_V2_INVISIBLE_SITE_KEY;
cordova.plugins.Recaptcha.verify(onSuccess, onFailure, args);
FAQs
A cordova plugin for the reCAPTCHA Android and Web API
We found that cordova-plugin-recaptcha-v2 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.