转发图片
(String appId, String toWxid, String xml)
| 148 | * 转发图片 |
| 149 | */ |
| 150 | public static JSONObject forwardImage(String appId, String toWxid, String xml) { |
| 151 | JSONObject param = new JSONObject(); |
| 152 | param.put("appId", appId); |
| 153 | param.put("toWxid", toWxid); |
| 154 | param.put("xml", xml); |
| 155 | return OkhttpUtil.postJSON("/message/forwardImage", param); |
| 156 | } |
| 157 | |
| 158 | /** |
| 159 | * 转发视频 |