@Test
public void testGetInfo() {
String userIds = "226009681,252090984,252089313";
String fields = "name,email_hash, sex,star,birthday,tinyurl,headurl,mainurl,hometown_location,hs_history,university_history,work_history,contact_info";
JSONArray users = this.getRenrenApiClient().getUserService().getInfo(userIds, fields,new AccessToken(this.getAccessToken()));
JSONObject u = JsonUtils.getIndexJSONObject(users, 0);
String name = JsonUtils.getValue(u, "name", String.class);
Assert.assertNotNull(name);
Assert.assertEquals(3, users.size());
}