【发布时间】:2017-03-21 07:04:30
【问题描述】:
我正在尝试使用NSURLSession 实现 HTTP 基本身份验证,但遇到了几个问题。请在回答之前阅读整个问题,我怀疑这是与其他问题的重复。
根据我运行的测试,NSURLSession 的行为如下:
- 第一个请求总是不带
Authorization标头。 - 如果第一个请求失败并带有
401 Unauthorized响应和WWW-Authenticate Basic realm=...标头,则会自动重试。 - 在重试请求之前,会话将尝试通过查看会话配置的
NSURLCredentialStorage或调用URLSession:task:didReceiveChallenge:completionHandler:委托方法(或两者)来获取凭据。 - 如果可以获取凭据,则使用正确的
Authorization标头重试请求。如果不是,则在没有标头的情况下重试(这很奇怪,因为在这种情况下,这是完全相同的请求)。 - 如果第二个请求成功,任务会透明地报告为成功,您甚至不会收到请求已尝试两次的通知。如果不是,则报告第二个请求失败(但不是第一个)。
这种行为的问题是我通过多部分请求将大文件上传到我的服务器,所以当请求被尝试两次时,整个POST 正文被发送两次,这是一个可怕的开销。
我尝试手动将Authorization 标头添加到会话配置的httpAdditionalHeaders,但只有在创建会话之前设置了该属性才有效。之后尝试修改session.configuration.httpAdditionalHeaders 不起作用。此外,文档明确指出不应手动设置 Authorization 标头。
所以我的问题是:如果我需要在获得凭据之前启动会话,并且如果我想确保第一次总是使用正确的 Authorization 标头发出请求,我该怎么办?
这是我用于测试的代码示例。你可以用它重现我上面描述的所有行为。
请注意,为了能够看到双重请求,您需要使用自己的 http 服务器并记录请求或通过记录所有请求的代理连接(我为此使用了 Charles Proxy)
class URLSessionTest: NSObject, URLSessionDelegate
{
static let shared = URLSessionTest()
func start()
{
let requestURL = URL(string: "https://httpbin.org/basic-auth/username/password")!
let credential = URLCredential(user: "username", password: "password", persistence: .forSession)
let protectionSpace = URLProtectionSpace(host: "httpbin.org", port: 443, protocol: NSURLProtectionSpaceHTTPS, realm: "Fake Realm", authenticationMethod: NSURLAuthenticationMethodHTTPBasic)
let useHTTPHeader = false
let useCredentials = true
let useCustomCredentialsStorage = false
let useDelegateMethods = true
let sessionConfiguration = URLSessionConfiguration.default
if (useHTTPHeader) {
let authData = "\(credential.user!):\(credential.password!)".data(using: .utf8)!
let authValue = "Basic " + authData.base64EncodedString()
sessionConfiguration.httpAdditionalHeaders = ["Authorization": authValue]
}
if (useCredentials) {
if (useCustomCredentialsStorage) {
let urlCredentialStorage = URLCredentialStorage()
urlCredentialStorage.set(credential, for: protectionSpace)
sessionConfiguration.urlCredentialStorage = urlCredentialStorage
} else {
sessionConfiguration.urlCredentialStorage?.set(credential, for: protectionSpace)
}
}
let delegate = useDelegateMethods ? self : nil
let session = URLSession(configuration: sessionConfiguration, delegate: delegate, delegateQueue: nil)
self.makeBasicAuthTest(url: requestURL, session: session) {
self.makeBasicAuthTest(url: requestURL, session: session) {
DispatchQueue.main.asyncAfter(deadline: .now() + 61.0) {
self.makeBasicAuthTest(url: requestURL, session: session) {}
}
}
}
}
func makeBasicAuthTest(url: URL, session: URLSession, completion: @escaping () -> Void)
{
let task = session.dataTask(with: url) { (data, response, error) in
if let response = response {
print("response : \(response)")
}
if let data = data {
if let json = try? JSONSerialization.jsonObject(with: data, options: .allowFragments) {
print("json : \(json)")
} else if data.count > 0, let string = String(data: data, encoding: .utf8) {
print("string : \(string)")
} else {
print("data : \(data)")
}
}
if let error = error {
print("error : \(error)")
}
print()
DispatchQueue.main.async(execute: completion)
}
task.resume()
}
@objc(URLSession:didReceiveChallenge:completionHandler:)
func urlSession(_ session: URLSession, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Swift.Void)
{
print("Session authenticationMethod: \(challenge.protectionSpace.authenticationMethod)")
if (challenge.protectionSpace.authenticationMethod == NSURLAuthenticationMethodHTTPBasic) {
let credential = URLCredential(user: "username", password: "password", persistence: .forSession)
completionHandler(.useCredential, credential)
} else {
completionHandler(.performDefaultHandling, nil)
}
}
@objc(URLSession:task:didReceiveChallenge:completionHandler:)
func urlSession(_ session: URLSession, task: URLSessionTask, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Swift.Void)
{
print("Task authenticationMethod: \(challenge.protectionSpace.authenticationMethod)")
if (challenge.protectionSpace.authenticationMethod == NSURLAuthenticationMethodHTTPBasic) {
let credential = URLCredential(user: "username", password: "password", persistence: .forSession)
completionHandler(.useCredential, credential)
} else {
completionHandler(.performDefaultHandling, nil)
}
}
}
注意 1:当向同一个端点连续发出多个请求时,我上面描述的行为只涉及第一个请求。第一次尝试使用正确的Authorization 标头来尝试后续请求。但是,如果您等待一段时间(大约 1 分钟),会话将恢复到默认行为(第一次请求尝试了两次)。
注意 2:这没有直接关系,但是使用自定义的 NSURLCredentialStorage 用于会话配置的 urlCredentialStorage 似乎不起作用。只有使用默认值(根据文档是共享的NSURLCredentialStorage)才有效。
注意 3:我尝试过使用 Alamofire,但由于它基于 NSURLSession,因此其行为方式完全相同。
【问题讨论】:
-
为什么不让第一个请求除了获得正确的授权标头之外什么都不做呢?下一个请求(及以后)完成所有繁重的工作。
-
尽量不要覆盖
didReceiveChallenge -
@GlennRay 这是一个丑陋的解决方案,我什至不想考虑。仍然无缘无故地消耗带宽,正如我所说,这不仅仅是会话的第一个请求,而是每次你停留大约 1 分钟而不发送任何内容时的第一个请求,所以这也是非常不切实际的。
-
@RunLoop 试过了。还要尝试在完成处理程序中使用所有可能的答案。没用。
-
尝试使用 ephemeral 选项设置 NSURLSession,并且仅使用附加标头选项设置授权。
标签: ios http nsurlsession basic-authentication urlsession