当用户WatchKit 2.0,iOS 9.0时,NSURLSession会自动发送用户代理吗? 有没有办法在WatchKit应用程序中验证这一点?
答案 0 :(得分:5)
是的,用户代理会自动作为默认会话配置的一部分提供。
默认的NSURLSession
请求标头User-Agent
字段包含您的watchOS应用扩展程序的捆绑包名称(CFBundleName
)和内部版本号(CFBundleVersion
):
$(CFBundleName)/$(CFBundleVersion) CFNetwork/808.3 Darwin/16.3.0
请注意,您的应用的版本号(CFBundleShortVersionString
)并未包含在内。 (有关详细信息,请参阅Technical Note TN2420: Version Numbers and Build Numbers 。)
例如,对于产品" Foo"使用Build Number 1,您的用户代理将是:
Foo%20WatchKit%20Extension/1 CFNetwork/808.3 Darwin/16.3.0
我认为你的应用程序中有一种方法可以检查默认的用户代理字段,因为它是nil
(除非您已将其设置为自定义值)。
但是,您可以使用netcat来检查模拟器发送的请求。
在终端中运行nc -l 5678
让netcat侦听发送到localhost
端口5678
的请求
在您应用的Info.plist
文件中,添加“应用传输安全设置”字典,并将“允许任意负载”键设置为YES
将以下代码添加到application(_:didFinishLaunchingWithOptions:)
let url = URL(string: "http://localhost:5678/")!
URLSession.shared.dataTask(with: url) { (data, response, error) in
let body = String(data: data!, encoding: .utf8)!
print("body: \(body)")
}.resume()
return true
在模拟器中运行您的应用,查看终端
如果您的隐私无关紧要,可以使用user-agent.me等服务在您的设备上进行测试。
将上面的localhost:5678
替换为user-agent.me
在您的设备上运行您的应用
检查Xcode的控制台输出
当您完成验证后,请记住撤消上述所有更改。
答案 1 :(得分:4)
NSURLSession默认发送用户代理。
默认为User-Agent样式。
"User-Agent" = "UserAgentDemo/1 CFNetwork/1121.2.1 Darwin/19.2.0";
我们可以自定义User-Agent。
let config = URLSessionConfiguration.default
config.httpAdditionalHeaders = ["User-Agent": "zgpeace User-Agent"]
我在下面为URLSession编写了一个演示。
func requestUrlSessionAgent() {
print("requestUrlSessionAgent")
let config = URLSessionConfiguration.default
// default User-Agent: "User-Agent" = "UserAgentDemo/1 CFNetwork/1121.2.1 Darwin/19.2.0";
// custom User-Agent
config.httpAdditionalHeaders = ["User-Agent": "zgpeace User-Agent"]
let session = URLSession(configuration: config)
let url = URL(string: "https://httpbin.org/anything")!
var request = URLRequest(url: url)
request.httpMethod = "GET"
let task = session.dataTask(with: url) { data, response, error in
// ensure there is no error for this HTTP response
guard error == nil else {
print ("error: \(error!)")
return
}
// ensure there is data returned from this HTTP response
guard let content = data else {
print("No data")
return
}
// serialise the data / NSData object into Dictionary [String : Any]
guard let json = (try? JSONSerialization.jsonObject(with: content, options: JSONSerialization.ReadingOptions.mutableContainers)) as? [String: Any] else {
print("Not containing JSON")
return
}
print("gotten json response dictionary is \n \(json)")
// update UI using the response here
}
// execute the HTTP request
task.resume()
}
顺便说一句,WKWebView中的默认User-Agent不同,例如
Mozilla/5.0 (iPhone; CPU iPhone OS 13_3 like Mac OS X)
您可以自定义WKWebView用户代理
webView.customUserAgent = "zgpeace User-Agent"
我还为WKWebView编写了一个演示:
func requestWebViewAgent() {
print("requestWebViewAgent")
let webView = WKWebView()
webView.evaluateJavaScript("navigator.userAgent") { (userAgent, error) in
if let ua = userAgent {
print("default WebView User-Agent > \(ua)")
}
// customize User-Agent
webView.customUserAgent = "zgpeace User-Agent"
}
}
警告:发布webView时,webView中的“ User-Agent”为零。您可以将webView对象设置为属性以保留webView。
NSURLConnection默认发送用户代理。
默认为User-Agent样式。
"User-Agent" = "UserAgentDemo/1 CFNetwork/1121.2.1 Darwin/19.2.0";
我们可以自定义User-Agent。
urlRequest.setValue("URLConnection zgpeace User-Agent", forHTTPHeaderField: "User-Agent")
我在下面为URLConnection编写了一个演示。
func requestUrlConnectionUserAgent() {
print("requestUrlConnectionUserAgent")
let url = URL(string: "https://httpbin.org/anything")!
var urlRequest = URLRequest(url: url)
urlRequest.httpMethod = "GET"
// default User-Agent: "User-Agent" = "UserAgentDemo/1 CFNetwork/1121.2.1 Darwin/19.2.0";
urlRequest.setValue("URLConnection zgpeace User-Agent", forHTTPHeaderField: "User-Agent")
NSURLConnection.sendAsynchronousRequest(urlRequest, queue: OperationQueue.main) { (response, data, error) in
// ensure there is no error for this HTTP response
guard error == nil else {
print ("error: \(error!)")
return
}
// ensure there is data returned from this HTTP response
guard let content = data else {
print("No data")
return
}
// serialise the data / NSData object into Dictionary [String : Any]
guard let json = (try? JSONSerialization.jsonObject(with: content, options: JSONSerialization.ReadingOptions.mutableContainers)) as? [String: Any] else {
print("Not containing JSON")
return
}
print("gotten json response dictionary is \n \(json)")
// update UI using the response here
}
}
GitHub中的演示:
https://github.com/zgpeace/UserAgentDemo.git
答案 2 :(得分:1)
与您的问题相关,请注意,可以使用User-Agent
对象并设置HTTPAdditionalHeaders. 为WatchKit中的NSURLSession
手动设置NSURLSessionConfiguration
字符串p>