i am writing an app that will use persons phone number (on a device) to identify the user on my network. what methods can i use to verify that the phone number retrieved from the device is real and not spoofed. i came up with two methods to do it but both of them require use of SMS:
- sending SMS from a device to my server
- sending SMS from my server to a device and intercepting it with my app
are there any other methods, i would like to omit using SMS if possible.
thanks