2.1.0 • Published 3 years ago

cordova-plugin-veriff v2.1.0

Weekly downloads
2
License
Apache-2.0
Repository
github
Last release
3 years ago

cordova-plugin-veriff

npm version

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.
  1. 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