The get method throws error "Can't add body to GET request." when trying to add parameters to get request.
For example, the following code throws above error.
Task<HttpResponse> result =
Unirest.get("https://ajax.googleapis.com/ajax/services/search/images?v=1.0").field("q","test").asStringAsync();
The get method throws error "Can't add body to GET request." when trying to add parameters to get request.
For example, the following code throws above error.
Task<HttpResponse> result =
Unirest.get("https://ajax.googleapis.com/ajax/services/search/images?v=1.0").field("q","test").asStringAsync();