设置好友仅聊天 @param appId @return
(String appId,String wxid,Boolean onlyChat)
| 103 | * @return |
| 104 | */ |
| 105 | public static JSONObject setFriendPermissions(String appId,String wxid,Boolean onlyChat){ |
| 106 | JSONObject param = new JSONObject(); |
| 107 | param.put("appId",appId); |
| 108 | param.put("wxid",wxid); |
| 109 | param.put("onlyChat",onlyChat); |
| 110 | return OkhttpUtil.postJSON("/contacts/setFriendPermissions",param); |
| 111 | } |
| 112 | |
| 113 | /** |
| 114 | * 设置好友备注 |