React Native OkHi SDK
A comprehensive React Native library for address verification using OkHi's digital and physical verification methods.
import * as OkHi from 'react-native-okhi';// 1. Loginawait OkHi.login({ auth: { branchId: 'xxx', clientKey: 'xxx' }, user: { firstName: 'John', lastName: 'Doe', phone: '+254...', email: '...' },});// 2. Start verificationconst result = await OkHi.startDigitalAddressVerification();console.log('Verified address:', result.location.formattedAddress); Copy
import * as OkHi from 'react-native-okhi';// 1. Loginawait OkHi.login({ auth: { branchId: 'xxx', clientKey: 'xxx' }, user: { firstName: 'John', lastName: 'Doe', phone: '+254...', email: '...' },});// 2. Start verificationconst result = await OkHi.startDigitalAddressVerification();console.log('Verified address:', result.location.formattedAddress);
React Native OkHi SDK
A comprehensive React Native library for address verification using OkHi's digital and physical verification methods.
Example