Package com.dongxuexidu.douban4j.model.shuo

Examples of com.dongxuexidu.douban4j.model.shuo.DoubanShuoUserObj


    }
  }
 
  public DoubanShuoUserObj getUserInfoById (String userId) throws DoubanException, IOException {
    String url = RequestUrls.DOUBAN_SHUO_USER_PREFIX + "/" + userId;
    DoubanShuoUserObj result = this.client.getResponseInJson(url, null, DoubanShuoUserObj.class, false);
    return result;
  }
View Full Code Here


   */
  public void testGetUserInfoById() throws Exception {
    System.out.println("getUserInfoById");
    String userId = "xxx";
    DoubanShuoService instance = new DoubanShuoService();
    DoubanShuoUserObj result = instance.getUserInfoById(userId);
    assertEquals(result.getScreenName(), "xxx");
  }
View Full Code Here

TOP

Related Classes of com.dongxuexidu.douban4j.model.shuo.DoubanShuoUserObj

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.