public Place fetchPlace(final String id) throws TwitterClientException {
HttpGet request = new HttpGet(TwitterAPI.API_PLACES_URL + id + ".json");
JSONObject object = requestJSONObject(request);
try {
return new Place(object);
} catch (TweetParseException e) {
throw new TwitterClientException(e);
}
}