转发视频
(String appId, String toWxid, String xml)
| 159 | * 转发视频 |
| 160 | */ |
| 161 | public static JSONObject forwardVideo(String appId, String toWxid, String xml) { |
| 162 | JSONObject param = new JSONObject(); |
| 163 | param.put("appId", appId); |
| 164 | param.put("toWxid", toWxid); |
| 165 | param.put("xml", xml); |
| 166 | return OkhttpUtil.postJSON("/message/forwardVideo", param); |
| 167 | } |
| 168 | |
| 169 | /** |
| 170 | * 转发链接 |