I am building an Android app that communicates with a remote server to get data. How can I use PHP to positively identify a request coming from an HttpClient
Android app?
One might think to use $_SERVER['HTTP_USER_AGENT']
, but that can be easily spoofed.
Any suggestions?