New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

cordova-plugin-recaptcha-v2

Package Overview
Dependencies
Maintainers
0
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cordova-plugin-recaptcha-v2

A cordova plugin for the reCAPTCHA Android and Web API

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

npm npm GitHub package.json version GitHub code size in bytes GitHub top language GitHub GitHub last commit

cordova-plugin-recaptcha-v2

Cordova plugin for integrating the SafetyNet Recaptcha API in your Android and Browser platforms.

Platforms

  • Android
  • Browser

Features

  • Supports legacy reCAPTCHA v2 site keys for Android and Web

Installation

Plugin Versions

Plugin versionCordovaCordova AndroidminSdkVersionSafetyNet
1.0.0>= 10.0.0>= 8.0.0>= 1918.0.1

Install latest version from NPM

  cordova plugin add cordova-plugin-recaptcha-v2

Install latest version with custom Play Services SafetyNet version

  cordova plugin add cordova-plugin-recaptcha-v2 --variable PLAY_SERVICES_SAFETYNET_VERSION=18.0.1

Install latest version from master

  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.

Methods

verify

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])
argsObject with siteKeyAndroid and optional siteKeyWeb strings
siteKeyAndroidString: A v2 Android site key from the v3 Admin Console. Required for the Android platform.
siteKeyWebString: 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.

Return values

  • reCAPTCHA response token

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.

Example

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);

Plugin demo app

Changelog

1.0.0

  • First version
  • Tested on Android 4.4 and up
  • Tested on browser platform

Keywords

FAQs

Package last updated on 25 Jun 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc