是否可以区分该请求是来自 UIWebView 还是来自 iPhone 的 safari?
我希望能够区分http请求。我可以使用 IP、用户代理或其他方式实现此目的吗?
I want to be able to distinguish http requests. Could I achieve this using IP, user agent or other means?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
UIWebView
是否托管在您正在编写的应用程序中?如果是这样,您应该能够使用NSURLConnection
手动管理与服务器的连接,并添加或更改随 HTTP 请求发送的标头,以将您需要的任何信息传递给服务器。Is the
UIWebView
hosted in an app you're writing? If so, you should be able to manually manage the connection to the server with anNSURLConnection
and add or change headers that are sent with the HTTP request to pass whatever information you need to the server.