I have a method on the Server side which gives me information about an specific name registered in my database. I\'m accessing it from my Android application.
The reque
Change
String url = BASE_URL + "/android/played.json";
to
String url = BASE_URL + "/android/played.json?name={name}";
because the map contains variables for the url only!