How to get UIWebView User-Agent(如何获取 UIWebView 用户代理)
问题描述
我在使用一台远程服务器时遇到了问题.我的应用程序使用 [NSData initWithContentsOfURL:] 方法向服务器发出请求,作为响应,我得到了在
UIWebView
中打开的网站 url.
I've got a problem working with one remote server. My app makes a request to a server using [NSData initWithContentsOfURL:]
method and as a response I get website's url which I open in UIWebView
.
问题是这些请求具有不同的用户代理,服务器无法正确地为我服务,因为它希望我使用相同的用户代理发送所有请求.我知道如何更改用户代理(例如 更改 UIWebView 中的用户代理(iPhone SDK)) 但我真正想要的是以某种方式获取 UIWebView
的 User-Agent 并将其设置为 [NSData initWithContentsOfURL:] 以避免服务器端出现问题
The problem is that those requests have different User-Agent and server can't serve me correct because it expects that I send all requests with the same User-Agent. I know how to change User-Agent (e.g Change User Agent in UIWebView (iPhone SDK)) but what I really want it is somehow to get UIWebView
's User-Agent and set it to [NSData initWithContentsOfURL:] to avoid problems with server side
推荐答案
我刚刚遇到了类似的问题,需要使 NSURLConnection 发送的用户代理与 UIWebView 发送的用户代理匹配.我的解决方案是创建一个 UIWebView,然后使用 javascript 拉出用户代理.
I just ran into a similar issue and needed to make the user agent sent by an NSURLConnection match the one sent by a UIWebView. My solution was to create a UIWebView and then just use javascript to pull out the user agent.
UIWebView* webView = [[UIWebView alloc] initWithFrame:CGRectZero];
NSString* secretAgent = [webView stringByEvaluatingJavaScriptFromString:@"navigator.userAgent"];
这篇关于如何获取 UIWebView 用户代理的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何获取 UIWebView 用户代理


基础教程推荐
- 如何从 logcat 中删除旧数据? 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01