-
-
Save xAIdrian/53792d2076db68223cf7c8f9d0a26f96 to your computer and use it in GitHub Desktop.
HTTP Basic Authentication using NSURLSession in swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
let config = NSURLSessionConfiguration.defaultSessionConfiguration() | |
let userPasswordString = "[email protected]:password" | |
let userPasswordData = userPasswordString.dataUsingEncoding(NSUTF8StringEncoding) | |
let base64EncodedCredential = userPasswordData!.base64EncodedStringWithOptions(nil) | |
let authString = "Basic \(base64EncodedCredential)" | |
config.HTTPAdditionalHeaders = ["Authorization" : authString] | |
let session = NSURLSession(configuration: config) | |
var running = false | |
let url = NSURL(string: "https://example.com/api/v1/records.json") | |
let task = session.dataTaskWithURL(url) { | |
(let data, let response, let error) in | |
if let httpResponse = response as? NSHTTPURLResponse { | |
let dataString = NSString(data: data, encoding: NSUTF8StringEncoding) | |
println(dataString) | |
} | |
running = false | |
} | |
running = true | |
task.resume() | |
while running { | |
println("waiting...") | |
sleep(1) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment