Uber APIを使用NSURLSession
して JSON データを取得するために使用しています。サーバー トークンとクライアント ID と. パラメーター (サーバー トークン、緯度と経度) を認証して渡すために、次のコードを更新するにはどうすればよいですか?Secret
let urlPath = "https://api.uber.com/v1/products"
let url = NSURL(string: urlPath)
let session = NSURLSession.sharedSession()
let task = session.dataTaskWithURL(url, completionHandler: {data, response, error -> Void in
if (error != nil) {
println(error)
}
else {
let jsonResult = NSJSONSerialization.JSONObjectWithData(data, options: NSJSONReadingOptions.MutableContainers, error: nil) as NSDictionary
println(jsonResult)
}
})
task.resume()