Reputation: 6448
I'm quite a newbie on HTTP and client and server stuff.
On the server side, is there a way to tell the difference between HTTP requests sent from "iPhone UIWebView" and "iPhone Safari / PC browsers / Mac Browsers", given that I the programmer don't add extra fields to the iPhone UIWebView request?
Thanks in advance.
Upvotes: 0
Views: 1043
Reputation: 4396
No, since UIWebView's send a user agent akin to the one send with Mobile Safari. Last I checked, there wasn't anything noticeable that differed between the two, though that could've changed. Try sniffing the HTTP requests with a tool like Wireshark and see if they differ.
Upvotes: 2