Reputation: 1689
I am creating an app using ionic framework. I want to authenticate user through OTP. I searched on google but didn't found any solutions . In ionic framework documents they mentioned oauth and signup . Please help me out to find solutions for the same. Thanks in advance .
Upvotes: 2
Views: 7571
Reputation: 188
Regarding your question on how to authenticate user the user through OTP through SMS you can easily do so by using a service like
The API is very simple and you can just send a http request to them to check. But I would advise to have a backend that communicates to the service instead of your Ionic app connecting to send OTP directly.
The hard route you could try would be for you to create the service by yourself in the backend.
Upvotes: 1
Reputation: 1246
You can use AccountKit by Facebook which is completely free for Android, IOS and Web. More detail here https://developers.facebook.com/docs/accountkit
Upvotes: 0