Is it possible to authenticate a user's phone number or email in nodejs environment instead of using firebase client sdk's for Android and iOS. Use case here is client sends phone number and otp to server and server authenticates it and creates a user of number/email if verified.
In client sdk there is signInWithPhoneNumber method which is used to authenticate mobile numbers, I want to know if it is possible to move this process to server side so client doesn't have to handle sdk's
What would be the ideal way to proceed here?