My URL is like -
https://api.insideview.com/api/v1/people/abcdef?active=true
here the arguments passed are people=abcdef and active=true
How can I incorporate both the parameters using get method-
My code is like-
public PeopleDetailInstance peopledetail(String peopleId) {
HttpClient client = new HttpClient();
GetMethod method = new GetMethod("https://api.insideview.com/api/v1/people/"+peopleId);