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

Method postEmoji

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

发送emoji消息

(String appId, String toWxid, String emojiMd5, String emojiSize)

Source from the content-addressed store, hash-verified

98 * 发送emoji消息
99 */
100 public static JSONObject postEmoji(String appId, String toWxid, String emojiMd5, String emojiSize) {
101 JSONObject param = new JSONObject();
102 param.put("appId", appId);
103 param.put("toWxid", toWxid);
104 param.put("emojiMd5", emojiMd5);
105 param.put("emojiSize", emojiSize);
106 return OkhttpUtil.postJSON("/message/postEmoji", param);
107 }
108
109 /**
110 * 发送appmsg消息

Callers

nothing calls this directly

Calls 1

postJSONMethod · 0.95

Tested by

no test coverage detected