删除好友 @param appId @return
(String appId,String wxid)
| 91 | * @return |
| 92 | */ |
| 93 | public static JSONObject deleteFriend(String appId,String wxid){ |
| 94 | JSONObject param = new JSONObject(); |
| 95 | param.put("appId",appId); |
| 96 | param.put("wxid",wxid); |
| 97 | return OkhttpUtil.postJSON("/contacts/deleteFriend",param); |
| 98 | } |
| 99 | |
| 100 | /** |
| 101 | * 设置好友仅聊天 |