Created
July 20, 2014 21:45
-
-
Save armstrongnate/5c5c828f1b82b0315e24 to your computer and use it in GitHub Desktop.
HTTP Basic Authentication using NSURLSession in swift
This file contains 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 = "username@gmail.com: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) | |
} |
You are my hero. Thank you for this solution. Nice, clear, working.
Thank you! This help saved me :)
👍 tnx
Hallo is there a Update with Swift 3 ?
How/where can I set http method (GET,POST)?
Hallo is there a Update with Swift 3 ?
It would be very useful for me to upgrade to Swift 3 ....
how to make get request json if i have token key and secret ?
Hi,
I ported the code to Swift4 in XCode9 since this example wasn't working anymore.
https://gist.github.com/temal-/71ae8b6bf89d33c5ad101dfbae2fc3d9
How to pass bearer token for all subsequent requests?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
rayraj the session data task is an asynchronous network call. If there is not a loop waiting for a network response the code would immediately execute to normal completion. The network response is received by the completionHandler of the session data task. The user sees "waiting..." in the console log until the completionHandler prints out a dataString and resets the loop condition for normal completion.