如何将curl Plaid请求转换为swift

问题描述 投票:0回答:1

我正在尝试在 swift 中使用 Plaid API,但似乎他们无法在 swift 中本地发出 API 请求,但是他们确实有curl。我知道你可以在 swift 中发出curl API 请求。

文档在curl中显示了此API请求:

curl -X POST https://sandbox.plaid.com/link/token/create -H 'Content-Type: application/json' -d '{
  "client_id": "CLIENT_ID",
  "secret": "SECRET",
  "user": {    "client_user_id": "unique-per-user",
  },
  "client_name": "Plaid App",
  "products": ["auth"],
  "country_codes": ["GB"],
  "language": "en",
  "webhook": "https://sample-web-hook.com",
  "account_filters": {
      "depository": {
          "account_subtypes": ["checking"]
      }
  }
}'

我如何将这个curl请求转换为swift - 特别是在swiftUI中。

ios swift curl plaid
1个回答
0
投票

这是一个非常具体的问题,在某种程度上没有人能为你回答。您必须自己编写代码,以便在出现问题时能够理解和调试它。 话虽如此,这里有一个关于如何发出 http post 请求的非常好的教程:

https://www.appsdeveloperblog.com/http-post-request-example-in-swift/

相关部分的开头如下:

// Prepare URL 
let url = URL(string: "https://jsonplaceholder.typicode.com/todos")
guard let requestUrl = url else { fatalError() }
// Prepare URL Request Object
var request = URLRequest(url: requestUrl)
request.httpMethod = "POST"

// HTTP Request Parameters which will be sent in HTTP Request Body 
let postString = "userId=300&title=My urgent task&completed=false";

显然您会想要使用格子变量而不是示例。但这应该可以帮助您开始。

© www.soinside.com 2019 - 2024. All rights reserved.