cordova-plugin-veriff

Cordova plugin exposing the VeriffSDK- Smart and scalable identity verification

APACHE-2.0 License

Downloads
11
Stars
3
Committers
1

cordova-plugin-veriff

Cordova plugin exposing the Veriff SDK - Smart and scalable identity verification

Requeriments

  • Android 5.1 or newer
  • iOS version 11.0 or newer

Installation

Within your Cordova project:

$ cordova plugin add cordova-plugin-veriff

Usage

The plugin exposes the VERIFF JavaScript namespace which cointains a Veriff end-to-end verification service.

To use this plugin:

In your ionic app:

  1. Declare a global var
declare var VERIFF;
  1. Create a session verification with your Veriff API KEY.

  2. Start the verification process:

We will need the verification sessionUrl to start the Veriff process

const sessionURL = session.verification.url;
const configuration = {
  themeColor: '#0F3C32'
};

VERIFF.start(sessionURL, configuration).then((result: { message: string, status: string }) => {
  // The promise returns the VeriffSDK verification result
  console.log("Result: ", result);
}).catch(err => console.error(err));

Building

Within root plugin path:

$ npm run build

Bugs

Changelog

See CHANGELOG.md

Author

Carlos Santos Morales

If you liked the project, consider buy me a coffee :)

Package Rankings
Top 19.4% on Npmjs.org
Badges
Extracted from project README
npm version
Related Projects