如何在Vapor 3中进行第三方api调用?

时间:2019-04-09 21:45:38

标签: swift api vapor

我想在Vapor 3中使用一些参数进行后期通话。

POST: http://www.example.com/example/post/request

title: How to make api call
year: 2019

可以使用哪个包/功能?

1 个答案:

答案 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)
    }
}