发送图片消息
(String appId, String toWxid, String imgUrl)
| 36 | * 发送图片消息 |
| 37 | */ |
| 38 | public static JSONObject postImage(String appId, String toWxid, String imgUrl) { |
| 39 | JSONObject param = new JSONObject(); |
| 40 | param.put("appId", appId); |
| 41 | param.put("toWxid", toWxid); |
| 42 | param.put("imgUrl", imgUrl); |
| 43 | return OkhttpUtil.postJSON("/message/postImage", param); |
| 44 | } |
| 45 | |
| 46 | /** |
| 47 | * 发送语音消息 |