1.0.26 • Published 4 years ago

@bigbangcore/react-native-kyc v1.0.26

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

react-native-kyc

KYC SDK wrapper for React Native

Getting started

$ yarn add @bigbangcore/react-native-kyc @bigbangcore/react-native-linkface

Automatic installation

Using in React Native > 0.60 with Cocoapods the autolinking will handle most to the dependencies

See @bigbangcore/react-native-linkface project for installing on iOS and Android

Usage

Init KYCVerificator

import KYCVerificator, {KYCVerifyRegion} from '@bigbangcore/react-native-kyc';

const kycVerificator = new KYCVerificator(
  0, // Your platform (see backend)
  KYCVerifyRegion.China, // Default start with China Region
  'http://api.project.com/api', // API url for kyc center
  authToken, // Current user Auth token
  '<LINKFACE_API_ID>',
  '<LINKFACE_API_SECRET>',
);

Listen for KYC info changes to refresh react component UI

const sub = kycVerificator.kycInfoChanges$.subscribe(() => {
  // Re-Render when info changes
  this.forceUpdate();
});

Scan/Select ID card

  • For region China it will use linkface to Scan Chinese ID Card
  • For region Worldwide it will show a menu to take or select a picture
kycVerificator
  .start(KYCVerifySteps.Front)
  .then(() => {})
  .catch(error => {
    alert(error.message);
  });
1.0.26

4 years ago

1.0.25

4 years ago

1.0.22

4 years ago

1.0.21

4 years ago

1.0.24

4 years ago

1.0.23

4 years ago

1.0.20

4 years ago

1.0.19

4 years ago

1.0.18

4 years ago

1.0.17

4 years ago

1.0.16

4 years ago

1.0.15

4 years ago

1.0.14

4 years ago

1.0.13

4 years ago

1.0.11

4 years ago

1.0.10

4 years ago

1.0.12

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.0

4 years ago