Swift 3中的基本身份验证不起作用

时间:2017-02-28 12:59:51

标签: ios swift basic-authentication urlsession

我在Swift中正在努力进行基本身份验证。

我有通过SSL和基本身份验证的Rest back服务。我的objective-c客户端代码运行良好但相应的Swift不起作用,因为身份验证失败。

这是Swift代码:

let sUrl = "HTTPS://localhost:8443/Test_1/rest/Service/returnInfo"
let url: URL = URL(string: sUrl)!
let request: URLRequest = URLRequest(url: url);
let session: URLSession = URLSession(configuration: URLSessionConfiguration.default, delegate: self, delegateQueue: OperationQueue())
let task: URLSessionDataTask = session.dataTask(with: request) { (data, response, inError) in {

   ...
   let httpResponse = response as! HTTPURLResponse
   if (httpResponse.statusCode != 200) {
        let details = [NSLocalizedDescriptionKey: "HTTP Error"]
        let error = NSError(domain:"WS", code:httpResponse.statusCode, userInfo:details)
        completionHandler(nil, error);
        return
   }
   ...
}
task.resume()

委托方法与Objective-c中的相应方法非常相似:

func urlSession(_ session: URLSession, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {

    guard challenge.previousFailureCount == 0 else {
        challenge.sender?.cancel(challenge)
        // Inform the user that the user name and password are incorrect
        completionHandler(.cancelAuthenticationChallenge, nil)
        return
    }

    let proposedCredential = URLCredential(user: user!, password: password!, persistence: .none)
    completionHandler(Foundation.URLSession.AuthChallengeDisposition.useCredential, proposedCredential)
}

httpResponse.statusCode始终为 401

委托方法只调用一次,而是在Objective-c中调用相应的方法两次。

我哪里错了?

UPDATE 相应的Objective-c代码:

NSString *sUrl = [NSString stringWithFormat:@"HTTPS://localhost:8443/Test_1/rest/Service/returnInfo"];
NSURL *url = [NSURL URLWithString:sUrl];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
NSURLSessionConfiguration *defaultConfigObject = [NSURLSessionConfiguration defaultSessionConfiguration];
NSURLSession *session = [NSURLSession sessionWithConfiguration: defaultConfigObject delegate:self delegateQueue:[NSOperationQueue mainQueue]];
NSURLSessionDataTask *task = [session dataTaskWithRequest:request completionHandler:^(NSData *data, NSURLResponse *response, NSError *inError) {
    if (inError != nil) {
        completionHandler(0, inError);
        return;
    }
    NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *)response;
    if (httpResponse.statusCode != 200) {
        NSDictionary *details = @{NSLocalizedDescriptionKey:@"HTTP Error"};
        NSError *error = [NSError errorWithDomain:@"WS" code:httpResponse.statusCode userInfo:details];
        completionHandler(0, error);
        return;
    }
    NSError *jsonError;
    NSDictionary *valueAsDictionary = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:&jsonError];
    if (jsonError != nil) {
        completionHandler(0, jsonError);
        return;
    }
    if (![valueAsDictionary[@"ret"] boolValue]) {
        NSInteger code = [valueAsDictionary[@"code"] integerValue];
        NSDictionary *details = @{NSLocalizedDescriptionKey:(valueAsDictionary[@"message"]!=nil) ? valueAsDictionary[@"message"] : @""};
        NSError *error = [NSError errorWithDomain:@"WS" code:code userInfo:details];
        completionHandler(0, error);
        return;
    }
    completionHandler(valueAsDictionary[@"value"], nil);
}];
[task resume];

这是委托功能:

- (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didReceiveChallenge:(NSURLAuthenticationChallenge *)challenge completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition disposition, NSURLCredential *credential))completionHandler {

if ([challenge previousFailureCount] == 0) {
    NSURLCredential *newCredential = [NSURLCredential credentialWithUser:_user password:_password persistence:NSURLCredentialPersistenceNone];
        completionHandler(NSURLSessionAuthChallengeUseCredential, newCredential);
} else {
    completionHandler(NSURLSessionAuthChallengeCancelAuthenticationChallenge, nil);
}

}

3 个答案:

答案 0 :(得分:1)

我最终设法让它在Swift中工作,即使我不知道因为它之前没有工作。 显然,必须将用户和密码显式添加到HTTP标头中。

let sUrl = "HTTPS://localhost:8443/Test_1/rest/Service/returnInfo"
let url: URL = URL(string: sUrl)!
let request: URLRequest = URLRequest(url: url);

// Changes from here ...

let config = URLSessionConfiguration.default
let userPasswordData = "\(user!):\(password!)".data(using: .utf8)
let base64EncodedCredential = userPasswordData!.base64EncodedString(options: Data.Base64EncodingOptions.init(rawValue: 0))
let authString = "Basic \(base64EncodedCredential)"
config.httpAdditionalHeaders = ["Authorization" : authString]
let session: URLSession = URLSession(configuration: config, delegate: self, delegateQueue: OperationQueue())

// ... to here

let task: URLSessionDataTask = session.dataTask(with: request) { (data, response, inError) in {

   ...
   let httpResponse = response as! HTTPURLResponse
   if (httpResponse.statusCode != 200) {
      let details = [NSLocalizedDescriptionKey: "HTTP Error"]
      let error = NSError(domain:"WS", code:httpResponse.statusCode, userInfo:details)
      completionHandler(nil, error);
      return
   }
   ...
}
task.resume()

答案 1 :(得分:0)

根据您的问题,这是您的请求(行)实例。

请求:URLRequest = URLRequest(url:url);

您尚未在此处为请求实例设置任何标头参数。请将请求标头和正文参数与您的目标C客户端进行比较。

标题参数可能包括 - 内容类型以及API密钥等其他有用的机密参数。

检查您的客观C客户端请求,并在swift代码中设置相同的参数

答案 2 :(得分:0)

此代码在Swift 3.0.1中适用于我:

    let login = "username"
    let password = "password"

    let sUrl = NSURL(string: (urlString as NSString) as String)
    let request: URLRequest = URLRequest(url: sUrl as! URL);

    let config = URLSessionConfiguration.default
    let userPasswordData = "\(login):\(password)".data(using: .utf8)
    let base64EncodedCredential = userPasswordData!.base64EncodedString(options: Data.Base64EncodingOptions.init(rawValue: 0))
    let authString = "Basic \(base64EncodedCredential)"
    config.httpAdditionalHeaders = ["Authorization" : authString]
    let session: URLSession = URLSession(configuration: config, delegate: self, delegateQueue: OperationQueue())

    let task = session.dataTask(with: request as URLRequest) { (data, response, error) -> Void in
         print("response \(data)")

        let httpResponse = response as! HTTPURLResponse
        if (httpResponse.statusCode != 200) {
            print(error?.localizedDescription as Any)
            print("Handle Error")
        }
        else{
            do {
                if let jsonResult = try JSONSerialization.jsonObject(with: data!, options: []) as? NSDictionary {
                    print("Synchronous\(jsonResult)")
                }
            } catch let error as NSError {
                print(error.localizedDescription)
            }
        }
    }
        task.resume()
  }