I want to let only Mobile App (iOS) to let data from my server side PHP Script
I used HTTP_USER_AGENT here
$userAgent = $_SERVER['HTTP_USER_AGENT'];
It shows App Name, CF Network Info, Darwin OS Info
I got some info regarding HTTP transmission info utilizing this. But i need more detail.
Is there any way to get more details info regarding my app & only accept Mobile App (iOS) to get data from server side PHP script?
About the only decent way to lock your server-side scripts to only mobile devices running your app is to implement HTTPS with client certificate validation.
Beyond this, anything that would indicate a device is running
iOScould easily be sent from any device. The most obvious case here is running Safari on the device and accessing your scripts from there.