撤回消息
(String appId, String toWxid, String msgId, String newMsgId,String createTime)
| 193 | * 撤回消息 |
| 194 | */ |
| 195 | public static JSONObject revokeMsg(String appId, String toWxid, String msgId, String newMsgId,String createTime) { |
| 196 | JSONObject param = new JSONObject(); |
| 197 | param.put("appId", appId); |
| 198 | param.put("toWxid", toWxid); |
| 199 | param.put("msgId", msgId); |
| 200 | param.put("newMsgId", newMsgId); |
| 201 | param.put("createTime", createTime); |
| 202 | return OkhttpUtil.postJSON("/message/revokeMsg", param); |
| 203 | } |
| 204 | |
| 205 | } |