0

我正在使用Java 的 HTTP 客户端库来访问 Google 自定义搜索 API 并执行搜索。

 String key = "...";
 String cx = "...";
 String query = "...";
 // Set up the HTTP transport and JSON factory
 HttpTransport httpTransport = new NetHttpTransport();
 JsonFactory jsonFactory = new JacksonFactory();

 Customsearch customsearch = new Customsearch(httpTransport, jsonFactory,null);
 List<Result> resultList = null;
 try {
       Customsearch.Cse.List list = customsearch.cse().list(query);
       list.setKey(key);
       list.setCx(cx);      
       Search results = list.execute();
 }catch (Exception e) {
       LOG.debug("Exception: " + e);
 }

虽然它有效,但我总是收到这个警告:

com.google.api.client.googleapis.services.AbstractGoogleClient 警告:未设置应用程序名称。调用 Builder#setApplicationName。

如何使用 Java 的 HTTP 客户端库设置应用程序名称?

4

1 回答 1

4

您应该使用Customsearch.Builder而不是 Customsearch 构造函数。例子:

Customsearch customsearch = new Builder(httpTransport, jsonFactory, null).setApplicationName("your application name").build();
于 2015-11-11T12:23:39.557 回答