@Test
public void testAddTagByName(){
long owner_id=432801017;
long photo_id=5369950424L;
String tagged_user_name="测试";
JSONObject json=this.getRenrenApiClient().getPhotoService().addTag(photo_id, owner_id, 600, 670, 20, 50, 100, 100, tagged_user_name,new AccessToken(this.getAccessToken()));
long res=(Long)((JSONObject)json.get("tag")).get("id");
System.out.println(res);
Assert.assertTrue(res>0);
}