I have a simple Google Places Query string from https://developers.google.com/places/web-service/search
The following URL displays a search for restaurants near Sydney.
https://maps.googleapis.com/maps/api/place/textsearch/xml?query=restaurants+in+Sydney&key=YOUR_API_KEY
But then retrofit2 & Okhttp3 I encoded it like this below:
https://maps.googleapis.com/maps/api/place/textsearch/xml?query=restaurants%2Bin%2BSydney&key=YOUR_API_KEY
Replacing every occurrence of "+" with "%2B" . And I want to stop this.
How do I achieve this?
Solutip
Does this work for you?
Call<List<Articles>> getArticles((@QueryMap(encoded=true) Map<String, String> options);
encoded = true
must notify the retrofit that the parameters have been coded.