Java 微信获取临时素材对接代码

发布时间:2024年01月05日

1.微信文档地址

https://developers.weixin.qq.com/doc/offiaccount/Asset_Management/Get_temporary_materials.html

2.代码

如果返回的是视频消息素材,则返回的貌似是一个json,那样的话就不适合使用以下代码

我是用来获取微信录音的,获取到文件流之后还需要使用 音频转码工具 AudioUtils.amrToMp3 转为mp3

	/**
     * 获取临时素材
     * @author hcx
     * @since 2024-01-03
     * @return String
     */
	public InputStream getTemporaryMaterial(String mediaId) throws IOException {
        // 请求微信临时素材接口
        String token = "access_token";
        String url = "https://api.weixin.qq.com/cgi-bin/media/get?" + token + "=ACCESS_TOKEN&media_id=" + mediaId;
        // 请求参数
        HashMap<String, String> param = new HashMap<>();
        param.put("media_id",mediaId);
        // 获取到http连接对象
        HttpPost httpPost = new HttpPost(url);
        StringEntity stringEntity = new StringEntity(JSONObject.toJSONString(param));
        httpPost.setEntity(stringEntity);
        // 打开链接发送请求 获取到返回的流
        CloseableHttpClient build = HttpClients.custom().build();
        CloseableHttpResponse execute = build.execute(httpPost);
        InputStream inputStream = execute.getEntity().getContent();
        return inputStream;
    }
文章来源:https://blog.csdn.net/qq_54386866/article/details/135400998
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。