Reputation: 612
I've been using Firebase for a while and have successfully used it to verify phone numbers in past projects.
Now I'm trying to implement it completely on the backend because at my current project the end user (phone app) doesn't have internet access but the backend (the user is connected to) has.
My plan was:
I wasn't able to find this and I'm not sure if it is supported. Any hints?
Upvotes: 2
Views: 1637
Reputation: 13
you can use it as front-end third party login service like sign with google etc... with use of link
Upvotes: 0
Reputation: 317477
Firebase Auth does not support this. The APIs are driven from the client app, which is always where credentials are established.
If you need a way to verify a phone number only from a backend, you'll need to use another service. I'm sure you can find some using a web search.
Upvotes: 3