本文整理汇总了Java中io.sphere.sdk.http.HttpMethod类的典型用法代码示例。如果您正苦于以下问题:Java HttpMethod类的具体用法?Java HttpMethod怎么用?Java HttpMethod使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
HttpMethod类属于io.sphere.sdk.http包,在下文中一共展示了HttpMethod类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: sendHttpGetRequest
import io.sphere.sdk.http.HttpMethod; //导入依赖的package包/类
@Override
@Nonnull
public CompletionStage<HttpRequestResult> sendHttpGetRequest(String url) {
HttpRequest request = HttpRequest.of(HttpMethod.GET, url);
// TODO: must be injected, instead of initialization!!!
HttpClient client = SphereClientFactory.of().createHttpClient();
return client.execute(request)
.thenApplyAsync(response -> HttpRequestResult.of(request, response, null))
.exceptionally(throwable -> HttpRequestResult.of(request, null, throwable))
.whenCompleteAsync((response, throwable) -> client.close());
}
开发者ID:commercetools,项目名称:commercetools-payment-integration-java,代码行数:14,代码来源:PaymentConnectorHelperImpl.java
示例2: httpRequestIntent
import io.sphere.sdk.http.HttpMethod; //导入依赖的package包/类
@Override
public HttpRequestIntent httpRequestIntent() {
final JsonNode variables = getVariables();
final String variablesPart = variables == null ? null : String.format("\"variables\": %s", Json.stringify(variables));
final String queryPart = String.format("\"query\": \"%s\"", getQuery().replace("\n", "\\n").replace("\"", "\\\""));
final String body = Stream.of(queryPart, variablesPart)
.filter(Objects::nonNull)
.collect(joining(",", "{", "}"));
return HttpRequestIntent.of(HttpMethod.POST, "/graphql", body);
}
示例3: httpRequestIntent
import io.sphere.sdk.http.HttpMethod; //导入依赖的package包/类
@Override
public HttpRequestIntent httpRequestIntent() {
return HttpRequestIntent.of(HttpMethod.GET, "string-endpoint");
}