There is a mobile application for iOS and Android created with: Framework7 + PhoneGap
A mobile application makes HTTP requests to a site that is written in PHP .
How does the PHP site uniquely identify an HTTP request from the PhoneGap mobile app?
ps: it is not possible to write separate requests or add some GET variable to requests, there are many interfaces like requests ...
Solution of the problem:
Use in config.xml the line:
<preference name="AppendUserAgent" value="Ваше добавочное значение" /> Well, then in PHP on the server look at the presence of this additional value in $ _SERVER ['HTTP_USER_AGENT']