I need data of places from Fourquare. I tried to use Venue. But don't have response.
try {
HttpClient client = new DefaultHttpClient();
String getURL = "https://api.foursquare.com/v2/venues/4cbd52efd78f46881cf1cc73";
HttpGet get = new HttpGet(getURL);
HttpResponse responseGet = client.execute(get);
HttpEntity resEntityGet = responseGet.getEntity();
if (resEntityGet != null) {
// do something with the response
String response = EntityUtils.toString(resEntityGet);
Log.i("GET RESPONSE", response);
}
} catch (Exception e) {
e.printStackTrace();
}
How to use this?
Please help.
Thanks.