我一直在做一些使用Postman连接到OAuth服务的测试。一切都很好,我可以看到JSON响应。但是,Postman生成的代码不包含任何令牌。
我如何在Swift中执行此操作?我也不想使用任何第三方库,因为我想学习如何做到这一点。
这是Postman生成的代码。没有关于如何生成令牌的信息。
import Foundation
let headers = [
"cache-control": "no-cache",
"postman-token": "31761212-1492-2111-aa2d-da54b8f1983b"
]
let request = NSMutableURLRequest(url: NSURL(string: "https://xxxdev.service-now.com/api/now/table/sc_request")! as URL,
cachePolicy: .useProtocolCachePolicy,
timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers
let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
if (error != nil) {
print(error)
} else {
let httpResponse = response as? HTTPURLResponse
print(httpResponse)
}
})
dataTask.resume()
由于