gpt4 book ai didi

ios - NSURLConnection 仅在第二次尝试时进行身份验证

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

我正在尝试在 UIWebView 中加载一个安全网站,我的基本方法是创建一个 NSURL,一个 NSURLRequest,然后是一个 NSURLConnection,然后在 UIWebView 中加载 NSURLRequest。加载网站后,我收到

- (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge

我用

回复挑战发送者
- (void)useCredential:(NSURLCredential *)credential forAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge

但在那之后我什么也得不到...它只是挂起。我设置了断点,所以我知道

- (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge

正在调用。如果我等到确定 NSURLConnection 不会完成,然后重新加载 View ,不会发送身份验证质询,但会加载 View 。我对服务器没有任何控制权。我愿意使用 AFNetworking,但仅在必要时才使用。

完整的源代码 list 如下:

 - (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:

(NSURLAuthenticationChallenge *)challenge
{
NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
if ([challenge previousFailureCount] == 0)
{
NSString *username = @"username";
NSString *password = @"passsword";
NSURLCredential * cred = [NSURLCredential credentialWithUser:username
password:password
persistence:NSURLCredentialPersistenceForSession];
[[challenge sender] useCredential:cred forAuthenticationChallenge:challenge];
}
else
{

}
}

-(void)updateCard
{
NSURL * url = [NSURL URLWithString:@"https://ssl.letu.edu/applications/chapelattendance/attendance.html"];
NSURLRequest * request = [NSURLRequest requestWithURL:url
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:50.0];
self.webView =[[UIWebView alloc] initWithFrame:self.bounds];
self.webView.delegate = self;
[self.webView loadRequest:request];
self.connection = [[ NSURLConnection alloc]initWithRequest:request delegate:self];
[self.connection start];
}

我哪里出错了?

最佳答案

您需要先检索服务器请求的“身份验证方法”:

[[challenge protectionSpace] authenticationMethod]

这些是上面的表达式返回的身份验证方法(它们是字符串常量):

NSURLAuthenticationMethodDefault
NSURLAuthenticationMethodHTTPBasic
NSURLAuthenticationMethodHTTPDigest
NSURLAuthenticationMethodHTMLForm
NSURLAuthenticationMethodNegotiate
NSURLAuthenticationMethodNTLM
NSURLAuthenticationMethodClientCertificate
NSURLAuthenticationMethodServerTrust

然后,您有以下选择:

  1. 如果您想为给定的身份验证方法提供凭据,您可以调用useCredential:forAuthenticationChallenge:

  2. 如果您不想自己处理该身份验证方法并希望系统尝试要进行身份验证,您可以调用 performDefaultHandlingForAuthenticationChallenge:然后可能会失败,这取决于系统是否能够处理该类型身份验证以及它是否可以在众所周知的存储中找到凭据。

  3. 如果您无法处理该身份验证方法 -- 说出身份验证方法 NSURLAuthenticationMethodNTLM 例如——你可以跳过这个保护 空间并尝试另一个保护空间,如果另一个 存在于此身份验证挑战中。那么你可能会得到一个 身份验证方法 NSURLAuthenticationMethodHTTPBasic 你 有能力处理。 为了拒绝当前保护空间你发送的方法 rejectProtectionSpaceAndContinueWithChallenge: 到 身份验证质询发送者。然后,NSURLConnection 将发送 再次 willSendRequestForAuthenticationChallenge: 到你的 委托(delegate)另一个保护空间(如果还有的话)。

  4. 您可以尝试在不提供凭据的情况下继续。 身份验证可能会失败。你可以试试看 发送消息 continueWithoutCredentialForAuthenticationChallenge: 给身份验证质询发送者。

  5. 最后,您可以通过取消 身份验证挑战:发送 cancelAuthenticationChallenge: 到 身份验证质询发送者。

注意:NSURLAuthenticationMethodHTTPBasicNSURLAuthenticationMethodHTTPDigest 身份验证方法可以使用使用 +credentialWithUser:password:persistence 创建的相同 NSURLCredential 对象来处理:

关于ios - NSURLConnection 仅在第二次尝试时进行身份验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17120392/

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