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

Method forwardFile

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

转发文件

(String appId, String toWxid, String xml)

Source from the content-addressed store, hash-verified

137 * 转发文件
138 */
139 public static JSONObject forwardFile(String appId, String toWxid, String xml) {
140 JSONObject param = new JSONObject();
141 param.put("appId", appId);
142 param.put("toWxid", toWxid);
143 param.put("xml", xml);
144 return OkhttpUtil.postJSON("/message/forwardFile", param);
145 }
146
147 /**
148 * 转发图片

Callers

nothing calls this directly

Calls 1

postJSONMethod · 0.95

Tested by

no test coverage detected