我想使用 Vapor 作为面向外部的 API 来访问其他内部服务。例如:
drop.client.post("http://localhost:8091/someEndpoint")
但是,我收到一条错误消息,说明该 URL 不是 URI(在端口和“:”之间存在问题)。此外,如果我需要转发到多个内部服务,我需要多个客户端吗?
我想使用 Vapor 作为面向外部的 API 来访问其他内部服务。例如:
drop.client.post("http://localhost:8091/someEndpoint")
但是,我收到一条错误消息,说明该 URL 不是 URI(在端口和“:”之间存在问题)。此外,如果我需要转发到多个内部服务,我需要多个客户端吗?