色总的微信小程序开发记录(四)--消息回复图片

微信小程序开发记录(四)--消息回复图片

  • 消息回复图片--通过公众号二维码图片关注公众号
    • 获取media_id
    • 微信接口--临时素材上传

前面的消息推送中,只是回复文本消息,但是现实的业务中要求有图片回复,通过公众号二维码图片回复来实现关注公众号,或下载APP。回复公众号二维码图片,识别公众号二维码可以直接跳转到关联的公众号中。

消息回复图片–通过公众号二维码图片关注公众号

开发者不能直接把二维码图片发送到用户处,需要先将二维码图片上传到微信资源服务器上,上传成功后,微信会返给开发者一个media_id,这个就是该二维码图片在微信资源服务器上的id,开发者将id保存在redis数据库中,到时候回复用户,只需要将id放入返回的数据结构中,并将数据类型设为图片即可。

获取media_id

	/**
     * 微信小程序管理后台APPID
     */
	@Value("${spring.wx.appId}")
    private String AppId;

	/**
     * 微信小程序管理后台凭证密钥AppSecret
     */
    @Value("${spring.wx.appSecret}")
    private String AppSecret;
	
	/**
     * 微信小程序临时素材上传接口--"https://api.weixin.qq.com/cgi-bin/media/upload?access_token="
     */
    @Value("${spring.wx.uploadTempMedia}")
    private String uploadTempMedia;

    /**
     * redis图片分层文件夹名称
     */
    private static final String weChatImageId="weChat_image_id:";

    /**
     * redis Token分层文件夹名称
     */
    private static final String weChatAccessToken="weChat_access_token";
    
    @Autowired
    private RedisTemplate redisTemplate;
    
 	/**
     * 方法--获取media_id
     * @return  String
     */
    public String getImageId(String imageName){
        //获取接口访问令牌
        String media_id = null;
        Boolean hasKey=redisTemplate.hasKey(redisFolderName+weChatImageId+imageName);
        if(hasKey){
            //有参数
            media_id=(String)redisTemplate.opsForValue().get(redisFolderName+weChatImageId+imageName);
        }else {
            try{
                //无参数-访问第三方接口重新获取,微信接口--临时素材上传
                media_id= uploadFileToWeChat(imageName);
                //redis新增WeChatImageId
                redisTemplate.opsForValue().set(redisFolderName+weChatImageId+imageName, media_id, 2, TimeUnit.DAYS);
            }catch (Exception e){
                logger.error("远程获取微信访问令牌失败!");
            }
        }
        return media_id;
    }

微信接口–临时素材上传

因为二维码图片可能会经常发生更改,所以选择临时素材接口上传。
customerServiceMessage.uploadTempMedia:微信素材上传接口,把媒体文件上传到微信服务器。目前仅支持图片。用于发送客服消息或被动回复用户消息。

POST https://api.weixin.qq.com/cgi-bin/media/upload?access_token=ACCESS_TOKEN&type=TYPE

请求参数

属性 type 说明
access_token string 接口调用凭证
type string 文件类型
media FormData form-data 中媒体文件标识,有filename、filelength、content-type等信息

和之前的方法–获取media_id在同一class中

 	/**
     * 工具--微信接口临时素材上传
     * @return  String
     * @throws Exception
     */
    private String uploadFileToWeChat(String imageName) throws Exception {
        String result = null;
        //指定本地文件所在目录路径的方式
        InputStream inputStream=this.getClass().getResourceAsStream("/template/"+imageName);
        String property = System.getProperty("user.dir");
        //在根目录生成一个文件
        File file = new File(property+imageName);
        logger.info(property+imageName);
        //将流转成File格式
        FileUtils.copyInputStreamToFile(inputStream, file);
        if (!file.exists() || !file.isFile()) {
            logger.info("文件不存在");
            throw new IOException("文件不存在");
        }
		//getToken()是去获取小程序全局唯一后台接口调用凭据access_token,如果本地redis有就拿,没有就请求微信重新获取,具体如何获取可以看我微信小程序开发日记的第二篇
        String url = uploadTempMedia + getToken() + "&type=image";
        URL urlObj = new URL(url);
        HttpURLConnection con = (HttpURLConnection) urlObj.openConnection();
        con.setRequestMethod("POST");
        con.setDoInput(true);
        con.setDoOutput(true);
        con.setUseCaches(false);
        // 设置请求头信息
        con.setRequestProperty("Connection", "Keep-Alive");
        con.setRequestProperty("Charset", "UTF-8");
        // 设置边界
        String BOUNDARY = "----------" + System.currentTimeMillis();
        con.setRequestProperty("Content-Type", "multipart/form-data; boundary=" + BOUNDARY);
        // 请求正文信息
        // 第一部分:
        StringBuilder sb = new StringBuilder();
        sb.append("--"); // 必须多两道线
        sb.append(BOUNDARY);
        sb.append("\r\n");
        sb.append("Content-Disposition: form-data;name=\"media\";filename=\"" + file.getName() + "\"\r\n");
        sb.append("Content-Type:application/octet-stream\r\n\r\n");
        byte[] head = sb.toString().getBytes("utf-8");
        // 获得输出流
        OutputStream out = new DataOutputStream(con.getOutputStream());
        // 输出表头
        out.write(head);
        // 文件正文部分
        // 把文件已流文件的方式 推入到url中
        DataInputStream in = new DataInputStream(new FileInputStream(file));
        int bytes = 0;
        byte[] bufferOut = new byte[1024];
        while ((bytes = in.read(bufferOut)) != -1) {
            out.write(bufferOut, 0, bytes);
        }
        in.close();
        // 结尾部分
        byte[] foot = ("\r\n--" + BOUNDARY + "--\r\n").getBytes("UTF-8");// 定义最后数据分隔线
        out.write(foot);
        out.flush();
        out.close();
        StringBuffer buffer = new StringBuffer();
        BufferedReader reader = null;
        try {
            // 定义BufferedReader输入流来读取URL的响应
            reader = new BufferedReader(new InputStreamReader(con.getInputStream()));
            String line = null;
            while ((line = reader.readLine()) != null) {
                buffer.append(line);
            }
            if (result == null) {
                result = buffer.toString();
            }
        } catch (IOException e) {
            System.out.println("发送POST请求出现异常! {}");
            e.printStackTrace();
            throw new IOException("数据读取异常");
        } finally {
            if (reader != null) {
                reader.close();
            }
        }
        // 获取到返回HTTP结果
        Map<String, Object> map = JSONObject.parseObject(result, Map.class);
        if (map.containsKey("media_id")) {
            return map.get("media_id").toString();
        }
        logger.error("小程序上传临时素材出错,返回信息为----------{}",result);
        return null;
    }

色总的微信小程序开发记录(二)–获取access_token

你可能感兴趣的:(小程序,微信)