I want to verify the user phone number by sending sms with the verification code (without login to Facebook) ... is it possible to achieve that using Account Kit ? .... and what configurations needed to be done with Xamarin forms ?
You will need a c# wrapper arround the native functions and then use Dependency Service to use the functions in you Forms App.
Refer to the binding sdk others provided: https://github.com/xamarin/FacebookComponents/issues/19#issuecomment-382906985
Answers
You will need a c# wrapper arround the native functions and then use Dependency Service to use the functions in you Forms App.
Refer to the binding sdk others provided: https://github.com/xamarin/FacebookComponents/issues/19#issuecomment-382906985
So the sms functionality is there ..... it's just matter of implementation ?
Yes , Account Kit can do it on android, iOS or web , what we need to do is creating the binding library for Xamarin to use.
@ColeX I saw that they have a web (java script) sdk .... so can i use it to verify phone number using my app api instead of creating a binding library ...... ex : user click register on both android and iOS -> send data to app api -> then the api call fb account kit with the phone number - fb account kit sends sms and get user respond and send it back to app api ......... is this a better solution ?
@ColeX would you mind sharing the process here??