我正在通过网关从Java应用程序中调用API。
my application <-> Gateway <-> API
网关只是充当代理,将请求从我的应用程序路由到API。
例如:
my application: https://myapp.domain.com:443
Gateway: https://gateway.api.net:443/API/manager
API: https://sample.api.com
我需要使用http请求调用网关url https://gateway.api.net:443/API/manager,它将把http请求路由到https://sample.api.com。
我正在使用下面的代码片段;
CustomHttpClientBuilder builder = CustomHttpClientBuilder.create();
HttpHost proxy = new HttpHost("gateway.api.net", 443);
builder.setProxy(proxy);
我能够连接到网关,并且我想知道如何使用/ API / manager(https://gateway.api.net:443/API/manager)进行调用