转发文件
(String appId, String toWxid, String xml)
| 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 | * 转发图片 |