我想在Vapor 3中使用一些参数进行后期通话。
POST: http://www.example.com/example/post/request
title: How to make api call
year: 2019
可以使用哪个包/功能?
答案 0 :(得分:4)
很简单,您可以像这样使用Client
来完成
func thirdPartyApiCall(on req: Request) throws -> Future<Response> {
let client = try req.client()
struct SomePayload: Content {
let title: String
let year: Int
}
return client.post("http://www.example.com/example/post/request", beforeSend: { req in
let payload = SomePayload(title: "How to make api call", year: 2019)
try req.content.encode(payload, as: .json)
})
}
或例如在boot.swift
/// Called after your application has initialized.
public func boot(_ app: Application) throws {
let client = try app.client()
struct SomePayload: Content {
let title: String
let year: Int
}
let _: Future<Void> = client.post("http://www.example.com/example/post/request", beforeSend: { req in
let payload = SomePayload(title: "How to make api call", year: 2019)
try req.content.encode(payload, as: .json)
}).map { response in
print(response.http.status)
}
}