react-native-authenteq-flow v1.76.2
react-native-authenteq-flow
Getting started
$ npm install react-native-authenteq-flow --save
or
$ yarn add react-native-authenteq-flow
iOS setup
Update Podfile in your_project_dir/ios
folder
1. change minimum deployment target to > 10.0
2. add dynamic frameworks support
3. add custom podspec repo url
Here is example Podfile after modification
platform :ios, '10.0'
source 'https://bitbucket.org/authenteq/cocoapods-specs.git'
source 'https://cdn.cocoapods.org/'
use_frameworks!
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
... other content of Podfile ...
Usage
Import AuthenteqFlow in JS file before usage:
import AuthenteqFlow from 'react-native-authenteq-flow';
Start identification:
AuthenteqFlow
.identification("YOUR_CLIENT_ID", "YOUR_CLIENT_SECRET", [['PP','DL','NID']])
.then((res) => {
console.log(res);
}).catch((error) => {
console.error(error);
})
More information at https://docs.authenteq.com/mo/react-native
2 years ago
2 years ago
2 years ago
3 years ago
3 years ago
3 years ago
3 years ago
4 years ago
3 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago