我正在尝试绕过应用程序传输安全性(ATS),它是IOS 9和Xcode 7的新功能。但是,我尝试了info.plist旁路,我仍然遇到问题。我在Xcode 6中尝试了完全相同的代码,并且请求已成功发送,因此请求应该是正确的。这可能只是新Xcode的一个错误,但我想知道是否有其他人遇到同样的问题。我很确定我正在遵循正确的文档:https://developer.apple.com/library/prerelease/ios/technotes/App-Transport-Security-Technote/index.html#//apple_ref/doc/uid/TP40016240
Info.plist(不完整,仅参与ATS)
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict/>
<key>NSAllowsArbitraryLoads</key>
<true/>
<key>http://127.0.0.1:5000</key>
<dict>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
<true/>
<key>NSTemporaryExceptionMinimumTLSVersion</key>
<string>TLSv1.1</string>
</dict>
</dict>
请求:
let postData = NSMutableData(data: "username=bobbyz".dataUsingEncoding(NSUTF8StringEncoding)!)
postData.appendData("&password=form".dataUsingEncoding(NSUTF8StringEncoding)!)
let request = NSMutableURLRequest(URL: NSURL(string: "http://127.0.0.1:5000/register")!,
cachePolicy: .UseProtocolCachePolicy,
timeoutInterval: 10.0)
request.HTTPMethod = "POST"
request.HTTPBody = postData
let session = NSURLSession.sharedSession()
let dataTask = session.dataTaskWithRequest(request, completionHandler: { (data, response, error) -> Void in
if (error != nil) {
print(error)
} else {
let httpResponse = response as? NSHTTPURLResponse
print(httpResponse)
}
})
dataTask.resume()
答案 0 :(得分:2)
这恰好发生在我身上。结果我不小心将旁路信息添加到我的Unit Test Info.plist。正如预期的那样,将它放在正确的Info.plist中可以解决问题。我还使用“localhost”而不是“127.0.0.1”并且没有提供端口。
使用Xcode 7 Beta 4。