Я пытаюсь сделать простой клиент для джик-клиента для google-поиска api.
Client client = ClientBuilder.newClient();
WebTarget target = client.target("https://www.googleapis.com/customsearch/v1");
target.queryParam("q", "mobile");
Response response = target.request().get();
System.out.println(response.readEntity(String.class));
Как вы заметили, я не включил key
и cx
. Не беспокойтесь об этом, это просто простая демонстрация. При посещении URL-адреса https://www.googleapis.com/customsearch/v1?q=mobile
ответ
{
"error": {
"errors": [
{
"domain": "usageLimits",
"reason": "dailyLimitExceededUnreg",
"message": "Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup.",
"extendedHelp": "https://code.google.com/apis/console"
}
],
"code": 403,
"message": "Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup."
}
}
Это правильно, так как я не включил key
и cx
. Когда я выполняю код выше, ответ, который я получаю,
{
"error": {
"errors": [
{
"domain": "global",
"reason": "required",
"message": "Required parameter: q",
"locationType": "parameter",
"location": "q"
}
],
"code": 400,
"message": "Required parameter: q"
}
}
Это эквивалентно посещению URL- target.queryParam("q", "mobile");
без каких-либо параметров (https://www.googleapis.com/customsearch/v1
), хотя я добавил этот target.queryParam("q", "mobile");
, Я делаю что-то неправильно?
Приведенный выше код относится к проекту mavenized, и зависимость
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-client</artifactId>
<version>2.14</version>
</dependency>