0 purchases
callify kit
Getting Started #
Callify OTP Verification Package. Simple and easiest way to verify your users through Miss Call, Voice OTP, SMS OTP and WhatsApp OTP.
Features #
Miss Call OTP Verification.
Getting started #
First, add callify_kit as a dependency in your pubspec.yaml file.
dependencies:
callify_kit: ^[latest version]
copied to clipboard
Don't forget to flutter pub get.
Then add permission in AndroidManifest.xml
<uses-permission android:name="android.permission.READ_CALL_LOG" />
copied to clipboard
Usage #
For Callify OTP - Call The callifyVerification Method and pass parameters
ApiKey
CampaingID
Phone Number
await CallifyService().callifyVerification(apiKey, campaingID, phoneNumber,
callReceivedCallBack: (response){
// in response you will get incoming call number, just need to verify it
});
copied to clipboard
For Miss Call OTP - Call The missCallVerification Method and pass parameters
ApiKey
CampaingID
Phone Number
await CallifyService().missCallVerification(apiKey, campaingID, phoneNumber,
callReceivedCallBack: (response){
// If you are using this package in iOS then you will get incoming call number in response and in Android this package will detect the incoming call and validate it with response number
});
copied to clipboard
For Voice OTP - Call The voiceOtpVerification Method and pass parameters
ApiKey
CampaingID
Phone Number
await CallifyService().voiceOtpVerification(apiKey, campaingID, phoneNumber,
callReceivedCallBack: (response){
// in response you get OTP or Failed
});
copied to clipboard
For SMS OTP - Call The smsOtpVerification Method and pass parameters
User Name
Password
Originator
Phone Number
await CallifyService().smsOtpVerification(userName, password, originator, phoneNumber,
callReceivedCallBack: (response){
// in response you get OTP or Failed
});
copied to clipboard
For WhatsApp OTP - Call The whatsappOtpVerification Method and pass parameters
ApiKey
Template ID
Phone Number
await CallifyService().whatsappOtpVerification(apiKey, templateId, phoneNumber,
callReceivedCallBack: (response){
// in response you get OTP or Failed
});
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.