1

我一直在做一些使用 Postman 连接到 OAuth 服务的测试。一切正常,我可以看到 JSON 响应。但是,Postman 生成的代码不包含任何标记。

我将如何在 Swift 中做到这一点?我也不想使用任何 3rd 方库,因为我想学习如何做到这一点。

这是 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()

谢谢

4

0 回答 0