无效凭证时NSURLConnection sendSynchronousRequest响应为nil

时间:2013-01-07 20:42:55

标签: ios nsurlconnection

我遇到了一种奇怪的行为,即使用sendSynchronousRequestsendAsynchronousRequest使用无效凭据会使nsurlresponse为零。但是使用[[NSURLConnection alloc] initWithRequest:request delegate:self];的旧方法我获得了401响应代码。

使用sendSynchronousRequestsendAsynchronousRequest的错误值为

  

Error Domain=NSURLErrorDomain Code=-1012 "The operation couldn’t be completed. (NSURLErrorDomain error -1012.)" UserInfo=0x756ecb0 {NSErrorFailingURLKey=myurl, NSErrorFailingURLStringKey=myurl, NSUnderlyingError=0x75704d0 "The operation couldn’t be completed. (kCFErrorDomainCFNetwork error -1012.)"

有人知道为什么会这样吗?任何关于此的信息表示赞赏。我期待得到sendSynchronousRequestsendAsynchronousRequest

的401回复

谢谢,

1 个答案:

答案 0 :(得分:4)

当使用401响应返回WWW-Authenticate: HTTP标头,要求用户交互输入有效凭据时,会导致此错误。 NSURLConnection处理HTTP标头和响应正文,将响应数据正确地作为NSData对象返回,但将returningResponse对象保留为nil

根据Apple的Foundation Constants Reference,错误-1012是:

  

NSURLErrorUserCancelledAuthentication

     

当用户取消身份验证的异步请求时返回。

     

这通常是通过单击用户名/密码对话框中的“取消”按钮而不是用户尝试来实现的   认证

我推测它会自动将WWW-Authenticate:标头视为对用户取消的凭据的请求(因为它是headless)并生成错误。然后,由于出现错误,因此不会执行应设置响应的代码路径的其他部分。我个人认为这是一个错误或坏设计。应该可以同时获得有效的HTTP响应和错误,无论哪种方式,您都会获得有效的HTTP响应,因此应设置returningResponse。坏苹果!