如何将NSURLCredential传递给NSURLSession?

时间:2013-11-19 04:25:16

标签: objective-c nsurlsession nsurlcredential

我有点困惑。我有这个方法。

-(BOOL)verifyAuth: (NSString*)username forPassword:(NSString*)password
{
    NSURLSession *session = [NSURLSession sharedSession];
    NSURLCredential *creds = [NSURLCredential credentialWithUser:username password:password persistence:NSURLCredentialPersistenceForSession];

    [session dataTaskWithURL:MALAuthVerifyURL completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) 
    {

         NSLog(@"%@",data);
    }];
    return YES;
}

如何将凭据传递给NSURLSession对象? Apple的文档说:

“创建NSURLCredential对象后:

对于NSURLSession,使用提供的完成处理程序块将对象传递给身份验证质询的发件人。“

但我不确定这究竟意味着什么。我找不到这种用法的任何例子。

感谢。

2 个答案:

答案 0 :(得分:1)

您需要实现另一个委托方法-URLSession:task:didReceiveChallenge:challenge:completionHandler:

答案 1 :(得分:1)

https://developer.apple.com/library/ios/documentation/cocoa/Conceptual/URLLoadingSystem/Articles/AuthenticationChallenges.html#//apple_ref/doc/uid/TP40009507-SW1

HTTP基本身份验证(NSURLAuthenticationMethodHTTPBasic)需要用户名和密码。提示用户提供必要的信息,并使用credentialWithUser:password:persistence:。

创建NSURLCredential对象。

创建NSURLCredential对象后:

  • 对于NSURLSession,使用提供的完成处理程序块将对象传递给身份验证质询的发件人。
  • 对于NSURLConnection和NSURLDownload,使用useCredential将对象传递给身份验证质询的发件人:forAuthenticationChallenge:。

也许这有帮助。