gpt4 book ai didi

ios - NSURLConnection sendSynchronousRequest 响应在无效凭证时为零

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:47:52 27 4
gpt4 key购买 nike

我遇到一个奇怪的行为,即使用带有无效凭据的 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 响应

谢谢,

最佳答案

此错误是在 WWW-Authenticate: HTTP header 随 401 响应一起返回时导致的,要求用户交互输入有效凭据。 NSURLConnection 处理 HTTP header 和响应主体,将响应数据作为 NSData 对象正确返回,但将 returningResponse 对象保留为

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

NSURLErrorUserCancelledAuthentication

Returned when an asynchronous request for authentication is cancelled by the user.

This is typically incurred by clicking a “Cancel” button in a username/password dialog, rather than the user making an attempt to authenticate.

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

关于ios - NSURLConnection sendSynchronousRequest 响应在无效凭证时为零,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14203712/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com