Package com.dongxuexidu.douban4j.model.user

Examples of com.dongxuexidu.douban4j.model.user.DoubanUserFeedObj


    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;
  }
View Full Code Here

TOP

Related Classes of com.dongxuexidu.douban4j.model.user.DoubanUserFeedObj

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.