I'm trying to call a local Rest Service that uses HTTP Basic Auth.
As a result of my request I get the following:
Found: error - unauthorized
Found: reason - password required
Here is my function that is doing the request.
func connect(url: String) -> Bool {
let url: NSURL = NSURL(string: url);
let login:String = "admin";
let password:String = "test123";
var defaultCredentials: NSURLCredential = NSURLCredential(user: login, password: password, persistence: NSURLCredentialPersistence.ForSession);
let host: String = url.host;
let port: Int = url.port;
let prot: String = url.scheme;
println("set following vars \(host) + \(port) + \(prot)");
var protectionSpace: NSURLProtectionSpace = NSURLProtectionSpace(host: host,port: port,`protocol`: prot,realm: nil,authenticationMethod: NSURLAuthenticationMethodHTTPBasic);
var credentialStorage: NSURLCredentialStorage = NSURLCredentialStorage.sharedCredentialStorage();
credentialStorage.setCredential(defaultCredentials, forProtectionSpace: protectionSpace);
var sessionConfiguration: NSURLSessionConfiguration = NSURLSessionConfiguration.defaultSessionConfiguration();
sessionConfiguration.URLCredentialStorage = credentialStorage;
let session: NSURLSession = NSURLSession(configuration: sessionConfiguration); //NSURLSession.sharedSession()
//NSURLSession.sessionWithConfiguration(sessionConfiguration);
let task = session.dataTaskWithURL(url, completionHandler: {data, response, error -> Void in
println("Task completed")
if((error) != nil) {
// If there is an error in the web request, print it to the console
println(error.localizedDescription)
}
var err: NSError?
var jsonResult = NSJSONSerialization.JSONObjectWithData(data, options: NSJSONReadingOptions.MutableContainers, error: &err) as NSDictionary
if(err != nil) {
// If there is an error parsing JSON, print it to the console
println("JSON Error \(err!.localizedDescription)")
}
self.delegate.didReceiveAPIResults(jsonResult);
})
task.resume()
return true
}
Could anybody please give me a hint?
I would consider using AFNetworking. I tried using AlamoFire but ran into an issue with Basic Auth (more info on that here). This is what I used to do Basic Auth in Swift.
Note that success and failure are closures (like blocks if you are coming from Objective C) that I am passing into my method.
If you haven't imported an Objective C library into Swift yet, I would recommend using cocoapods as you usually would. Then simply add this line to your Bridging-Header.h file.