Ejemplo n.º 1
0
 /**
  * 更新用户之间关系(加关注、取消关注)
  *
  * @param uid 自己的uid
  * @param hisuid 对方用户的uid
  * @param newrelation 0:取消对他的关注 1:关注他
  * @return
  * @throws AppException
  */
 public Result updateRelation(int uid, int hisuid, int newrelation) throws AppException {
   return ApiClient.updateRelation(this, uid, hisuid, newrelation);
 }