cordova-plugin-recaptcha

1.0.0 • Public • Published

Ionic 3 Recaptcha Plugin (Android)

This is a cordova plugin to perform Google reCAPTCHA verify on Android using the android SafetyNet package.

Based on cordova-plugin-recaptcha by @pack-internal

Links

Installation

cordova plugin add git@bitbucket.org:manoloedge/ionic-recaptcha-android.git

Usage

  ionViewDidLoad() {
    this.platform.ready().then(() => {
      (<any>window).IonicRecaptcha.verify('ANDROID_KEY', this.successCallback, this.errorCallback);
    });
  }
  
  successCallback(data) {
    console.log("Good, verified", data);
  }
 
  errorCallback(err) {
    console.log("Bad, not verified", err);
  }

Readme

Keywords

none

Package Sidebar

Install

npm i cordova-plugin-recaptcha

Weekly Downloads

1

Version

1.0.0

License

none

Unpacked Size

6.05 kB

Total Files

6

Last publish

Collaborators

  • logginjs