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

Method forwardUrl

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

转发链接

(String appId, String toWxid, String xml)

Source from the content-addressed store, hash-verified

170 * 转发链接
171 */
172 public static JSONObject forwardUrl(String appId, String toWxid, String xml) {
173 JSONObject param = new JSONObject();
174 param.put("appId", appId);
175 param.put("toWxid", toWxid);
176 param.put("xml", xml);
177 return OkhttpUtil.postJSON("/message/forwardUrl", param);
178 }
179
180 /**
181 * 转发小程序

Callers

nothing calls this directly

Calls 1

postJSONMethod · 0.95

Tested by

no test coverage detected