Examples of DoubanShuoUserObj


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

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

   */
  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
Copyright © 2018 www.massapi.com. 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.