转发链接
(String appId, String toWxid, String xml)
| 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 | * 转发小程序 |