当前位置: 首页>>代码示例>>Java>>正文


Java HttpRequestFactory.buildPostRequest方法代码示例

本文整理汇总了Java中com.google.api.client.http.HttpRequestFactory.buildPostRequest方法的典型用法代码示例。如果您正苦于以下问题:Java HttpRequestFactory.buildPostRequest方法的具体用法?Java HttpRequestFactory.buildPostRequest怎么用?Java HttpRequestFactory.buildPostRequest使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.google.api.client.http.HttpRequestFactory的用法示例。


在下文中一共展示了HttpRequestFactory.buildPostRequest方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: PostOrderWithTokensOnly

import com.google.api.client.http.HttpRequestFactory; //导入方法依赖的package包/类
/**
 * Post an order using the token and secret token to authenticate in DEAL.
 * To demonstrate successful authentication a POST request is executed.
 * 
 * @param messageToBePosted the JSON string representing the order
 * @return the result of the post action
 * 
 * @throws Exception on an exception occurring
 */
public static String PostOrderWithTokensOnly(String messageToBePosted)
		throws Exception
{
	// utilize accessToken to access protected resource in DEAL
	HttpRequestFactory factory = TRANSPORT
			.createRequestFactory(getParameters());
	GenericUrl url = new GenericUrl(PROTECTED_ORDERS_URL);
	InputStream stream = new ByteArrayInputStream(
			messageToBePosted.getBytes());
	InputStreamContent content = new InputStreamContent(JSON_IDENTIFIER,
			stream);
	HttpRequest req = factory.buildPostRequest(url, content);

	HttpResponse resp = req.execute();
	String response = resp.parseAsString();

	// log the response
	if (resp.getStatusCode() != 200 && LOG.isInfoEnabled())
	{
		LOG.info("Response Status Code: " + resp.getStatusCode());
		LOG.info("Response body:" + response);
	}

	return response;
}
 
开发者ID:krevelen,项目名称:coala,代码行数:35,代码来源:DealOAuth1Util.java

示例2: post

import com.google.api.client.http.HttpRequestFactory; //导入方法依赖的package包/类
@SuppressWarnings("unchecked")
@Override
public <T> T post(String path, Object request, Type responseType)
    throws RepoException, ValidationException {
  HttpRequestFactory requestFactory = getHttpRequestFactory(getCredentials());

  GenericUrl url = new GenericUrl(URI.create(API_URL + "/" + path));
  try {
    HttpRequest httpRequest = requestFactory.buildPostRequest(url,
        new JsonHttpContent(JSON_FACTORY, request));
    HttpResponse response = httpRequest.execute();
    return (T) response.parseAs(responseType);
  } catch (IOException e) {
    throw new RepoException("Error running GitHub API operation " + path, e);
  }
}
 
开发者ID:google,项目名称:copybara,代码行数:17,代码来源:GitHubApiTransportImpl.java

示例3: putDroplets

import com.google.api.client.http.HttpRequestFactory; //导入方法依赖的package包/类
public void putDroplets(String userName, List<Droplet> droplets) throws Exception {
    try {
        System.out.println("Perform droplet search ....");
        HttpRequestFactory httpRequestFactory = createRequestFactory(transport);

        HttpContent content = new JsonHttpContent(new JacksonFactory(), droplets);
        HttpRequest request = httpRequestFactory.buildPostRequest(
                new GenericUrl(DROPLET_POST_URL + userName),
                content);

        HttpResponse response = request.execute();
        System.out.println(response.getStatusCode());

    } catch (HttpResponseException e) {
        System.err.println(e.getStatusMessage());
        throw e;
    }
}
 
开发者ID:ZanyGnu,项目名称:GeoNote,代码行数:19,代码来源:DropletServer.java

示例4: testMissingBody

import com.google.api.client.http.HttpRequestFactory; //导入方法依赖的package包/类
@Test
public void testMissingBody() throws IOException {
  HttpContent httpContent = new ByteArrayContent("application/json",
      new byte[]{});

  GenericUrl url = new GenericUrl();
  url.setScheme("http");
  url.setHost("localhost");
  url.setPort(port);
  url.setRawPath("/tox");

  HttpRequestFactory requestFactory = new NetHttpTransport().createRequestFactory();
  HttpRequest httpRequest = requestFactory.buildPostRequest(url, httpContent);

  HttpResponse httpResponse = httpRequest.execute();
  Assert.assertEquals(HttpStatusCodes.STATUS_CODE_OK, httpResponse.getStatusCode());
  Reader reader = new InputStreamReader(httpResponse.getContent(), Charsets.UTF_8);

  JsonRpcResponse response = JsonRpcResponse.fromJson(new JsonParser().parse(reader)
      .getAsJsonObject());

  Assert.assertTrue(response.isError());
  Assert.assertEquals(400, response.error().status().code());
}
 
开发者ID:jsilland,项目名称:piezo,代码行数:25,代码来源:HttpJsonRpcServerTest.java

示例5: postRequest

import com.google.api.client.http.HttpRequestFactory; //导入方法依赖的package包/类
@VisibleForTesting
InputStream postRequest(String url, String boundary, String content) throws IOException {
  HttpRequestFactory requestFactory = new NetHttpTransport().createRequestFactory();
  HttpRequest request = requestFactory.buildPostRequest(new GenericUrl(url),
      ByteArrayContent.fromString("multipart/form-data; boundary=" + boundary, content));
  request.setReadTimeout(60000);  // 60 seconds is the max App Engine request time
  HttpResponse response = request.execute();
  if (response.getStatusCode() >= 300) {
    throw new IOException("Client Generation failed at server side: " + response.getContent());
  } else {
    return response.getContent();
  }
}
 
开发者ID:cloudendpoints,项目名称:endpoints-java,代码行数:14,代码来源:CloudClientLibGenerator.java

示例6: doPost

import com.google.api.client.http.HttpRequestFactory; //导入方法依赖的package包/类
@Override
public final void doPost(final HttpServletRequest req, final HttpServletResponse resp)
    throws IOException {
  HttpTransport httpTransport;
  try {
    Map<Object, Object> params = new HashMap<>();
    params.putAll(req.getParameterMap());
    params.put("task", req.getHeader("X-AppEngine-TaskName"));

    httpTransport = GoogleNetHttpTransport.newTrustedTransport();
    GoogleCredential credential = GoogleCredential.getApplicationDefault()
        .createScoped(Collections.singleton("https://www.googleapis.com/auth/userinfo.email"));
    HttpRequestFactory requestFactory = httpTransport.createRequestFactory();
    GenericUrl url = new GenericUrl(ConfigurationConstants.IMAGE_RESIZER_URL);

    HttpRequest request = requestFactory.buildPostRequest(url, new UrlEncodedContent(params));
    credential.initialize(request);

    HttpResponse response = request.execute();
    if (!response.isSuccessStatusCode()) {
      log("Call to the imageresizer failed: " + response.getContent().toString());
      resp.setStatus(HttpStatusCodes.STATUS_CODE_SERVER_ERROR);
    } else {
      resp.setStatus(response.getStatusCode());
    }

  } catch (GeneralSecurityException | IOException e) {
    log("Http request error: " + e.getMessage());
    resp.setStatus(HttpStatusCodes.STATUS_CODE_SERVER_ERROR);
  }
}
 
开发者ID:googlearchive,项目名称:abelana,代码行数:32,代码来源:TaskQueueNotificationServlet.java

示例7: getStringFromPOST

import com.google.api.client.http.HttpRequestFactory; //导入方法依赖的package包/类
private String getStringFromPOST(String scheme, String host, String path,
		String query, String key) {
	String rm = null;
	try {
		HttpTransport httpTransport = new NetHttpTransport();
		HttpRequestFactory httpRequestFactory = httpTransport
				.createRequestFactory();
		String data = "query=" + query + "&key=" + key;
		HttpContent content = new ByteArrayContent(
				"application/x-www-form-urlencoded", data.getBytes());
		GenericUrl url = new GenericUrl(
				"https://www.googleapis.com/freebase/v1/mqlread");
		HttpRequest request = httpRequestFactory.buildPostRequest(url,
				content);
		HttpHeaders headers = new HttpHeaders();
		headers.put("X-HTTP-Method-Override", "GET");
		request.setHeaders(headers);
		com.google.api.client.http.HttpResponse response = request
				.execute();
		InputStream is = response.getContent();
		if (is != null) {
			String s = convertinputStreamToString(is);
			rm = s;
			return rm;
		}
	} catch (IOException e) {
		e.printStackTrace();
	}
	return rm;
}
 
开发者ID:jctoledo,项目名称:abselexsubmitparser,代码行数:31,代码来源:URLReader.java

示例8: testWrongPath

import com.google.api.client.http.HttpRequestFactory; //导入方法依赖的package包/类
@Test
public void testWrongPath() throws IOException {
  JsonObject request = new JsonObject();
  request.addProperty("method", "TimeService.GetTime");
  request.addProperty("id", "identifier");
  JsonObject parameter = new JsonObject();
  parameter.addProperty("timezone", DateTimeZone.UTC.getID());
  JsonArray parameters = new JsonArray();
  parameters.add(parameter);
  request.add("params", parameters);

  HttpContent httpContent = new ByteArrayContent("application/json",
      new Gson().toJson(request).getBytes(Charsets.UTF_8));

  GenericUrl url = new GenericUrl();
  url.setScheme("http");
  url.setHost("localhost");
  url.setPort(port);
  url.setRawPath("/tox");

  HttpRequestFactory requestFactory = new NetHttpTransport().createRequestFactory();
  HttpRequest httpRequest = requestFactory.buildPostRequest(url, httpContent);

  HttpResponse httpResponse = httpRequest.execute();
  Assert.assertEquals(HttpStatusCodes.STATUS_CODE_OK, httpResponse.getStatusCode());
  Reader reader = new InputStreamReader(httpResponse.getContent(), Charsets.UTF_8);

  JsonRpcResponse response = JsonRpcResponse.fromJson(new JsonParser().parse(reader)
      .getAsJsonObject());

  Assert.assertTrue(response.isError());
  Assert.assertEquals(404, response.error().status().code());
}
 
开发者ID:jsilland,项目名称:piezo,代码行数:34,代码来源:HttpJsonRpcServerTest.java

示例9: testMissingService

import com.google.api.client.http.HttpRequestFactory; //导入方法依赖的package包/类
@Test
public void testMissingService() throws IOException {
  JsonObject request = new JsonObject();
  request.addProperty("method", ".GetTime");
  request.addProperty("id", "identifier");
  JsonObject parameter = new JsonObject();
  parameter.addProperty("timezone", DateTimeZone.UTC.getID());
  JsonArray parameters = new JsonArray();
  parameters.add(parameter);
  request.add("params", parameters);

  HttpContent httpContent = new ByteArrayContent("application/json",
      new Gson().toJson(request).getBytes(Charsets.UTF_8));

  GenericUrl url = new GenericUrl();
  url.setScheme("http");
  url.setHost("localhost");
  url.setPort(port);
  url.setRawPath("/rpc");

  HttpRequestFactory requestFactory = new NetHttpTransport().createRequestFactory();
  HttpRequest httpRequest = requestFactory.buildPostRequest(url, httpContent);

  HttpResponse httpResponse = httpRequest.execute();
  Assert.assertEquals(HttpStatusCodes.STATUS_CODE_OK, httpResponse.getStatusCode());
  Reader reader = new InputStreamReader(httpResponse.getContent(), Charsets.UTF_8);

  JsonRpcResponse response = JsonRpcResponse.fromJson(new JsonParser().parse(reader)
      .getAsJsonObject());

  Assert.assertTrue(response.isError());
  Assert.assertEquals(400, response.error().status().code());
}
 
开发者ID:jsilland,项目名称:piezo,代码行数:34,代码来源:HttpJsonRpcServerTest.java

示例10: testMissingMethod

import com.google.api.client.http.HttpRequestFactory; //导入方法依赖的package包/类
@Test
public void testMissingMethod() throws IOException {
  JsonObject request = new JsonObject();
  request.addProperty("method", "TimeService.");
  request.addProperty("id", "identifier");
  JsonObject parameter = new JsonObject();
  parameter.addProperty("timezone", DateTimeZone.UTC.getID());
  JsonArray parameters = new JsonArray();
  parameters.add(parameter);
  request.add("params", parameters);

  HttpContent httpContent = new ByteArrayContent("application/json",
      new Gson().toJson(request).getBytes(Charsets.UTF_8));

  GenericUrl url = new GenericUrl();
  url.setScheme("http");
  url.setHost("localhost");
  url.setPort(port);
  url.setRawPath("/rpc");

  HttpRequestFactory requestFactory = new NetHttpTransport().createRequestFactory();
  HttpRequest httpRequest = requestFactory.buildPostRequest(url, httpContent);

  HttpResponse httpResponse = httpRequest.execute();
  Assert.assertEquals(HttpStatusCodes.STATUS_CODE_OK, httpResponse.getStatusCode());
  Reader reader = new InputStreamReader(httpResponse.getContent(), Charsets.UTF_8);

  JsonRpcResponse response = JsonRpcResponse.fromJson(new JsonParser().parse(reader)
      .getAsJsonObject());

  Assert.assertTrue(response.isError());
  Assert.assertEquals(400, response.error().status().code());
}
 
开发者ID:jsilland,项目名称:piezo,代码行数:34,代码来源:HttpJsonRpcServerTest.java

示例11: testMissingId

import com.google.api.client.http.HttpRequestFactory; //导入方法依赖的package包/类
@Test
public void testMissingId() throws IOException {
  JsonObject request = new JsonObject();
  request.addProperty("method", "TimeService.GetTime");
  JsonObject parameter = new JsonObject();
  parameter.addProperty("timezone", DateTimeZone.UTC.getID());
  JsonArray parameters = new JsonArray();
  parameters.add(parameter);
  request.add("params", parameters);

  HttpContent httpContent = new ByteArrayContent("application/json",
      new Gson().toJson(request).getBytes(Charsets.UTF_8));

  GenericUrl url = new GenericUrl();
  url.setScheme("http");
  url.setHost("localhost");
  url.setPort(port);
  url.setRawPath("/rpc");

  HttpRequestFactory requestFactory = new NetHttpTransport().createRequestFactory();
  HttpRequest httpRequest = requestFactory.buildPostRequest(url, httpContent);

  HttpResponse httpResponse = httpRequest.execute();
  Assert.assertEquals(HttpStatusCodes.STATUS_CODE_OK, httpResponse.getStatusCode());
  Reader reader = new InputStreamReader(httpResponse.getContent(), Charsets.UTF_8);

  JsonRpcResponse response = JsonRpcResponse.fromJson(new JsonParser().parse(reader)
      .getAsJsonObject());

  Assert.assertTrue(response.isError());
  Assert.assertEquals(400, response.error().status().code());
}
 
开发者ID:jsilland,项目名称:piezo,代码行数:33,代码来源:HttpJsonRpcServerTest.java

示例12: testMissingParam

import com.google.api.client.http.HttpRequestFactory; //导入方法依赖的package包/类
@Test
public void testMissingParam() throws IOException {
  JsonObject request = new JsonObject();
  request.addProperty("method", ".GetTime");
  request.addProperty("id", "identifier");
  JsonObject parameter = new JsonObject();
  parameter.addProperty("timezone", DateTimeZone.UTC.getID());

  HttpContent httpContent = new ByteArrayContent("application/json",
      new Gson().toJson(request).getBytes(Charsets.UTF_8));

  GenericUrl url = new GenericUrl();
  url.setScheme("http");
  url.setHost("localhost");
  url.setPort(port);
  url.setRawPath("/rpc");

  HttpRequestFactory requestFactory = new NetHttpTransport().createRequestFactory();
  HttpRequest httpRequest = requestFactory.buildPostRequest(url, httpContent);

  HttpResponse httpResponse = httpRequest.execute();
  Assert.assertEquals(HttpStatusCodes.STATUS_CODE_OK, httpResponse.getStatusCode());
  Reader reader = new InputStreamReader(httpResponse.getContent(), Charsets.UTF_8);

  JsonRpcResponse response = JsonRpcResponse.fromJson(new JsonParser().parse(reader)
      .getAsJsonObject());

  Assert.assertTrue(response.isError());
  Assert.assertEquals(400, response.error().status().code());
}
 
开发者ID:jsilland,项目名称:piezo,代码行数:31,代码来源:HttpJsonRpcServerTest.java

示例13: initiateResumableUpload

import com.google.api.client.http.HttpRequestFactory; //导入方法依赖的package包/类
/**
 * Initiates the resumable upload by sending a request to Google Cloud Storage.
 *
 * @param batchJobUploadUrl the {@code uploadUrl} of a {@code BatchJob}
 * @return the URI for the initiated resumable upload
 */
private URI initiateResumableUpload(URI batchJobUploadUrl) throws BatchJobException {
  // This follows the Google Cloud Storage guidelines for initiating resumable uploads:
  // https://cloud.google.com/storage/docs/resumable-uploads-xml
  HttpRequestFactory requestFactory =
      httpTransport.createRequestFactory(new HttpRequestInitializer() {
        @Override
        public void initialize(HttpRequest request) throws IOException {
          HttpHeaders headers = createHttpHeaders();
          headers.setContentLength(0L);
          headers.set("x-goog-resumable", "start");
          request.setHeaders(headers);
          request.setLoggingEnabled(true);
        }
      });

  try {
    HttpRequest httpRequest =
        requestFactory.buildPostRequest(new GenericUrl(batchJobUploadUrl), new EmptyContent());
    HttpResponse response = httpRequest.execute();
    if (response.getHeaders() == null || response.getHeaders().getLocation() == null) {
      throw new BatchJobException(
          "Initiate upload failed. Resumable upload URI was not in the response.");
    }
    return URI.create(response.getHeaders().getLocation());
  } catch (IOException e) {
    throw new BatchJobException("Failed to initiate upload", e);
  }
}
 
开发者ID:googleads,项目名称:googleads-java-lib,代码行数:35,代码来源:BatchJobUploader.java

示例14: labelDataset

import com.google.api.client.http.HttpRequestFactory; //导入方法依赖的package包/类
/**
 * Add or modify a label on a dataset.
 *
 * <p>See <a href="https://cloud.google.com/bigquery/docs/labeling-datasets">the BigQuery
 * documentation</a>.
 */
public static void labelDataset(
    String projectId, String datasetId, String labelKey, String labelValue) throws IOException {

  // Authenticate requests using Google Application Default credentials.
  GoogleCredential credential = GoogleCredential.getApplicationDefault();
  credential = credential.createScoped(Arrays.asList("https://www.googleapis.com/auth/bigquery"));

  // Get a new access token.
  // Note that access tokens have an expiration. You can reuse a token rather than requesting a
  // new one if it is not yet expired.
  credential.refreshToken();
  String accessToken = credential.getAccessToken();

  // Set the content of the request.
  Dataset dataset = new Dataset();
  dataset.addLabel(labelKey, labelValue);
  HttpContent content = new JsonHttpContent(JSON_FACTORY, dataset);

  // Send the request to the BigQuery API.
  String urlFormat =
      "https://www.googleapis.com/bigquery/v2/projects/%s/datasets/%s"
          + "?fields=labels&access_token=%s";
  GenericUrl url = new GenericUrl(String.format(urlFormat, projectId, datasetId, accessToken));
  HttpRequestFactory requestFactory = HTTP_TRANSPORT.createRequestFactory();
  HttpRequest request = requestFactory.buildPostRequest(url, content);
  request.setParser(JSON_FACTORY.createJsonObjectParser());

  // Workaround for transports which do not support PATCH requests.
  // See: http://stackoverflow.com/a/32503192/101923
  request.setHeaders(new HttpHeaders().set("X-HTTP-Method-Override", "PATCH"));
  HttpResponse response = request.execute();

  // Check for errors.
  if (response.getStatusCode() != 200) {
    throw new RuntimeException(response.getStatusMessage());
  }

  Dataset responseDataset = response.parseAs(Dataset.class);
  System.out.printf(
      "Updated label \"%s\" with value \"%s\"\n",
      labelKey, responseDataset.getLabels().get(labelKey));
}
 
开发者ID:GoogleCloudPlatform,项目名称:java-docs-samples,代码行数:49,代码来源:LabelsSample.java

示例15: labelTable

import com.google.api.client.http.HttpRequestFactory; //导入方法依赖的package包/类
/**
 * Add or modify a label on a table.
 *
 * <p>See <a href="https://cloud.google.com/bigquery/docs/labeling-datasets">the BigQuery
 * documentation</a>.
 */
public static void labelTable(
    String projectId,
    String datasetId,
    String tableId,
    String labelKey,
    String labelValue)
    throws IOException {

  // Authenticate requests using Google Application Default credentials.
  GoogleCredential credential = GoogleCredential.getApplicationDefault();
  credential = credential.createScoped(Arrays.asList("https://www.googleapis.com/auth/bigquery"));

  // Get a new access token.
  // Note that access tokens have an expiration. You can reuse a token rather than requesting a
  // new one if it is not yet expired.
  credential.refreshToken();
  String accessToken = credential.getAccessToken();

  // Set the content of the request.
  Table table = new Table();
  table.addLabel(labelKey, labelValue);
  HttpContent content = new JsonHttpContent(JSON_FACTORY, table);

  // Send the request to the BigQuery API.
  String urlFormat =
      "https://www.googleapis.com/bigquery/v2/projects/%s/datasets/%s/tables/%s"
          + "?fields=labels&access_token=%s";
  GenericUrl url =
      new GenericUrl(String.format(urlFormat, projectId, datasetId, tableId, accessToken));
  HttpRequestFactory requestFactory = HTTP_TRANSPORT.createRequestFactory();
  HttpRequest request = requestFactory.buildPostRequest(url, content);
  request.setParser(JSON_FACTORY.createJsonObjectParser());

  // Workaround for transports which do not support PATCH requests.
  // See: http://stackoverflow.com/a/32503192/101923
  request.setHeaders(new HttpHeaders().set("X-HTTP-Method-Override", "PATCH"));
  HttpResponse response = request.execute();

  // Check for errors.
  if (response.getStatusCode() != 200) {
    throw new RuntimeException(response.getStatusMessage());
  }

  Table responseTable = response.parseAs(Table.class);
  System.out.printf(
      "Updated label \"%s\" with value \"%s\"\n",
      labelKey, responseTable.getLabels().get(labelKey));
}
 
开发者ID:GoogleCloudPlatform,项目名称:java-docs-samples,代码行数:55,代码来源:LabelsSample.java


注:本文中的com.google.api.client.http.HttpRequestFactory.buildPostRequest方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。