菜鸟教程小白 发表于 2022-12-12 22:33:24

ios - 在 Web 请求中附加附加信息以进行身份​​验证


                                            <p><p>我正在为 OAuth 2.0 实现自己的身份验证框架。
据我了解,如果 token 已过期,服务器会发送 401。 </p>

<p>我实现了 NSURLConnection 的委托(delegate)</p>

<pre><code>- (void)connection:(NSURLConnection *)connection willSendRequestForAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge;
</code></pre>

<p>捕捉这些错误并刷新 token 。 </p>

<pre><code>- (void)connection:(NSURLConnection *)connection willSendRequestForAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge{
// refresh token and send it to server

    if ( &gt; 0) {
            // do something may be alert message
      }
    else
    {
         //refreshToken
    }
}
</code></pre>

<p>但似乎我无法将 token 附加到 url。 </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>你不能 - 更改 url 意味着一个新的请求。当前请求正在进行中,并且是针对此 URL 的。</p>

<p>一种直接的方法是在 url 连接本身周围有一个“包装器对象”,如果第一次失败,它可以透明地执行第二次请求</p>

<p>例如伪代码</p>

<pre><code>@interface MyConnection
- loadRequest:(NSURLRequest*)r completionHandler:handler //not fully felshed out for this example
@end

@implementation MyConnection

- loadRequest:(NSURLRequest*)r completionHandler:handler //not fully felshed out for this example
{
    [NSURLConnection sendRequest:r completion:{
      if(response.status == 401)
      {
            NSMutableURLRequest *r2 = ;
            //refresh by sending a new request r2
                [NSURLConnection sendRequest:r2 completion:{
                  handler(response);
                }];
      }
      else {
            handler(response);
      }
    }];
}
@end
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 Web 请求中附加附加信息以进行身份​​验证,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/24018283/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/24018283/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 Web 请求中附加附加信息以进行身份​​验证