MCPcopy Create free account
hub / github.com/Devo919/Gewechat / revokeMsg

Method revokeMsg

src/main/java/api/base/MessageApi.java:195–203  ·  view source on GitHub ↗

撤回消息

(String appId, String toWxid, String msgId, String newMsgId,String createTime)

Source from the content-addressed store, hash-verified

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}

Callers

nothing calls this directly

Calls 1

postJSONMethod · 0.95

Tested by

no test coverage detected