菜鸟教程小白 发表于 2022-12-13 00:22:39

ios - NSURLConnection sendSynchronousRequest 响应在无效凭据上为零


                                            <p><p>我遇到了一个奇怪的行为,使用带有无效凭据的 <code>sendSynchronousRequest</code> 或 <code>sendAsynchronousRequest</code> 会使 nsurlresponse 为零。但是使用 <code>[ initWithRequest:request delegate:self];</code> 的旧方法我得到了 401 响应代码。 </p>

<p>使用<code>sendSynchronousRequest</code>或<code>sendAsynchronousRequest</code>的错误值为</p>

<blockquote>
<p><code>Error Domain=NSURLErrorDomain Code=-1012 &#34;The operation couldn’t be
completed. (NSURLErrorDomain error -1012.)&#34; UserInfo=0x756ecb0
{NSErrorFailingURLKey=myurl,
NSErrorFailingURLStringKey=myurl,
NSUnderlyingError=0x75704d0 &#34;The operation couldn’t be completed.
(kCFErrorDomainCFNetwork error -1012.)&#34;</code></p>
</blockquote>

<p>有人知道为什么会这样吗?对此的任何信息表示赞赏。我期待从 <code>sendSynchronousRequest</code> 或 <code>sendAsynchronousRequest</code></p> 获得 401 响应

<p>谢谢,</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>当 <code>WWW-Authenticate:</code> HTTPheader 与 401 响应一起返回时会导致此错误,要求用户交互输入有效的凭据。 <code>NSURLConnection</code> 处理 HTTPheader 和响应正文,将响应数据正确返回为 <code>NSData</code> 对象,但将 <code>returningResponse</code> 对象保留为 <code>无</code>.</p>

<p>根据 Apple 的 <a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Miscellaneous/Foundation_Constants/Reference/reference.html#//apple_ref/doc/uid/TP40003793-CH3g-SW40" rel="noreferrer noopener nofollow">Foundation Constants Reference</a> ,错误-1012为:</p>

<blockquote>
<p><code>NSURLErrorUserCancelledAuthentication</code></p>

<p>Returned when an asynchronous request for authentication is cancelled by the user.</p>

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

<p>我推测它会自动将 <code>WWW-Authenticate:</code>header 视为用户取消的凭据请求(因为它是 <a href="http://en.wikipedia.org/wiki/Headless_computer" rel="noreferrer noopener nofollow">headless</a> )并生成错误。然后应该设置响应的代码路径的其他部分没有执行,因为出现错误。我个人认为这是一个错误或糟糕的设计。应该可以同时获得有效的 HTTP 响应和错误,无论哪种方式,您都会获得有效的 HTTP 响应,因此应该设置 <code>returningResponse</code>。坏苹果!</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - NSURLConnection sendSynchronousRequest 响应在无效凭据上为零,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/14203712/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/14203712/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - NSURLConnection sendSynchronousRequest 响应在无效凭据上为零