Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jersey rest client not adding query parameters

I'm trying to make a simple jersey rest client for google search 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));

As you've noticed I haven't included key and cx. Don't worry about that, it's just a simple demo. When visiting the url https://www.googleapis.com/customsearch/v1?q=mobile, the response is

{
 "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."
 }
}

Which is correct since I haven't included key and cx. When I execute the code above, the response I'm getting is

{
 "error": {
  "errors": [
   {
    "domain": "global",
    "reason": "required",
    "message": "Required parameter: q",
    "locationType": "parameter",
    "location": "q"
   }
  ],
  "code": 400,
  "message": "Required parameter: q"
 }
}

Which is equivalent of visiting the url without any parameters (https://www.googleapis.com/customsearch/v1), although I've added this target.queryParam("q", "mobile");. Am I doing something wrong?

The code above belongs to a mavenized project and the dependency is

<dependency>
    <groupId>org.glassfish.jersey.core</groupId>
    <artifactId>jersey-client</artifactId>
    <version>2.14</version>
</dependency>
like image 403
Alkis Kalogeris Avatar asked Jan 01 '15 15:01

Alkis Kalogeris


People also ask

How do you pass a request parameter in REST client?

Query parameters are passed after the URL string by appending a question mark followed by the parameter name , then equal to (“=”) sign and then the parameter value. Multiple parameters are separated by “&” symbol. The same parameters passed as URL parameters in the previous example are passed as Query parameters here.

What's the difference between @PathParam and @QueryParam restful annotations?

PathParam could be used to drill down to entity class hierarchy. Whereas, QueryParam could be reserved for specifying attributes to locate the instance of a class. For example, /Vehicle/Car?


1 Answers

chain the call

Response response= client.target("https://www.googleapis.com/customsearch/v1")
.queryParam("q", "mobile").request().get();

from the docs:

Returns:A new target instance.

Note :- If not chaining then get newly created webtarget instance and use it.

WebTarget webTarget = client.target(snapshotGeneratorUrl);
webTarget = webTarget.queryParam("foo","foo").queryParam("bar",bar);
Response response = webTarget.request().get();
like image 72
arisalexis Avatar answered Sep 18 '22 14:09

arisalexis