Sinch Verification for react native. http://www.sinch.com
npm install react-native-sinch-verification- In the XCode's "Project navigator", right click on project name folder ➜
Add Files to <...>
- Ensure
Copy items if neededandCreate groupsare checked
- Go to
node_modules➜react-native-sinch-verification➜ addSinchVerificationIOSfolder - Add the dependency frameworks as described here (The
SinchVerication.frameworkcan be found in this package, under theSinchVericationSDKfolder)
npm install react-native-sinch-verificationrnpm link react-native-sinch-verification- (runnpm install -g rnpmif required)- require the permissions as specified here
var SinchVerification = require('react-native-sinch-verification');
var custom = "A custom string to be sent to your server backend, through Sinch's callback URL";
// init with app key
SinchVerification.init('your-app-key');
// sms verification
SinchVerification.sms('your-phone-number-without-country-code', custom, (err, res) => {
if (!err) {
// for android, verification is done, because the sms has been read automatically
// for ios, this means the sms has been sent out, you need to call verify with the received code
}
});
// verify the received code (not needed on android)
SinchVerification.verify('the-received-code', (err, res) => {
if (!err) {
// done!
}
});
// flash call verification (android only)
SinchVerification.flashCall('your-phone-number-without-country-code', custom, (err, res) => {
if (!err) {
// done!
}
});