本文整理汇总了Java中com.mashape.unirest.http.Unirest.post方法的典型用法代码示例。如果您正苦于以下问题:Java Unirest.post方法的具体用法?Java Unirest.post怎么用?Java Unirest.post使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.mashape.unirest.http.Unirest
的用法示例。
在下文中一共展示了Unirest.post方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: requestHttp
import com.mashape.unirest.http.Unirest; //导入方法依赖的package包/类
/**
* Using the HttpMethod to return a http request.
* @param params Parameters to be replaced.
* @return The http request
*/
private HttpRequest requestHttp(Object... params) {
String processedPath = processPath(params);
HttpRequest request = null;
switch (path.getMethod()) {
case GET:
request = Unirest.get(processedPath); break;
case HEAD:
request = Unirest.head(processedPath); break;
case POST:
request = Unirest.post(processedPath); break;
case PUT:
request = Unirest.put(processedPath); break;
case PATCH:
request = Unirest.patch(processedPath); break;
case DELETE:
request = Unirest.delete(processedPath); break;
case OPTIONS:
request = Unirest.options(processedPath); break;
}
processRequest(request);
this.request = request;
return request;
}
示例2: post
import com.mashape.unirest.http.Unirest; //导入方法依赖的package包/类
public Response<Object> post(String url,
Map<String, String> routeParamsMap,
Map<String, String> queryStringMap,
Map<String, String> headersMap,
Object bodyObject) throws HttpClientException {
HttpRequestWithBody request = Unirest.post(url);
return executeHttpRequestWithBody(routeParamsMap, queryStringMap, headersMap, bodyObject, request);
}
示例3: put
import com.mashape.unirest.http.Unirest; //导入方法依赖的package包/类
public Response<Object> put(String url,
Map<String, String> routeParamsMap,
Map<String, String> queryStringMap,
Map<String, String> headersMap,
Object bodyObject) throws HttpClientException {
HttpRequestWithBody request = Unirest.post(url);
return executeHttpRequestWithBody(routeParamsMap, queryStringMap, headersMap, bodyObject, request);
}
示例4: makeRequest
import com.mashape.unirest.http.Unirest; //导入方法依赖的package包/类
public String makeRequest() {
try {
HttpRequestWithBody request;
switch (type) {
case DELETE:
request = Unirest.delete(url);
break;
case OPTIONS:
request = Unirest.options(url);
break;
case PATCH:
request = Unirest.patch(url);
break;
case POST:
request = Unirest.post(url);
break;
case PUT:
request = Unirest.put(url);
break;
case GET:
return Unirest.get(url).header("authorization", "Bot " + api.getLoginTokens().getToken()).header("Content-Type", isForm ? "application/x-www-form-urlencoded" : (file ? "application/octet-stream" : "application/json; charset=utf-8")).asString().getBody();
default:
throw new RuntimeException();
}
return request.header("authorization", "Bot " + api.getLoginTokens().getToken()).header("Content-Type", isForm ? "application/x-www-form-urlencoded" : (file ? "application/octet-stream" : "application/json; charset=utf-8")).body(data).asString().getBody();
} catch (UnirestException e) {
throw new RuntimeException(e);
}
}
示例5: authenticatedPostRequest
import com.mashape.unirest.http.Unirest; //导入方法依赖的package包/类
public static HttpRequestWithBody authenticatedPostRequest(String endpoint) {
return Unirest.post(API_URL + "/" + getHearthAuthentication().getAuthentication().accessToken + endpoint);
}
示例6: makePostRequest
import com.mashape.unirest.http.Unirest; //导入方法依赖的package包/类
/**
* Method which uses OKHTTP to send a POST request to the specified URL saved
* within the APIMethod class
* @throws UnirestException
*/
@SuppressWarnings("unchecked")
private <T> T makePostRequest(ApiMethod method) throws RobinhoodApiException {
HttpRequestWithBody request = Unirest.post(method.getBaseUrl());
//Append each of the headers for the method
Iterator<HttpHeaderParameter> headerIterator = method.getHttpHeaderParameters().iterator();
while(headerIterator.hasNext()) {
HttpHeaderParameter currentHeader = headerIterator.next();
request.header(currentHeader.getKey(), currentHeader.getValue());
}
try {
//Append the request body
request.body(method.getUrlParametersAsPostBody());
//Make the request
HttpResponse<JsonNode> jsonResponse = request.asJson();
//Parse the response with Gson
Gson gson = new Gson();
String responseJsonString = jsonResponse.getBody().toString();
//If the response type for this is VOID (Meaning we are not expecting a response) do not
//try to use Gson
if(method.getReturnType() == Void.TYPE)
return (T) Void.TYPE;
T data = gson.fromJson(responseJsonString, method.getReturnType());
return data;
} catch (UnirestException ex) {
System.err.println("[RobinhoodApi] Failed to communicate with Robinhood servers, request failed");
}
throw new RobinhoodApiException();
}