return result;
}
public DoubanUserFeedObj getUsersWhoWantsToBeThereByEventId(long eventId) throws DoubanException, IOException {
String url = RequestUrls.DOUBAN_EVENT_PREFIX + "/" + eventId + "/wishers";
DoubanUserFeedObj result = this.client.getResponse(url, null, DoubanUserFeedObj.class, false);
return result;
}