使用RestTemplate调用微信接口获取微信小程序码

系统使用微服务架构,所以调用第三方接口使用RestTemplate,在报文实体和Java对象之间还需要进行转换,SpringMVC和RestTemplate提供了HttpMessageConverter作为转换器,具体流程如下图

HttpMessageConverter的介绍SpringMVC - HttpMessageConverter与返回JSON - 小小默:进无止境 - CSDN博客服务器返回的可能有多种类型(application/json, application/atom+xml, application/x-www-form-urlencoded, application/octet-stream, application/pdf, application/rss+xml, application/xhtml+xml, application/xml, text/event-stream, text/html, text/markdown, text/plain, text/xml, application/*+json, image/vnd.wap.wbmp, image/png, image/x-png, image/jpeg, image/bmp, image/gif),所以转换器接口HttpMessageConverter会有多个接口将报文实体和java对象进行转换

具体的转换器实现类

调用微信应用接口接口大概的流程

1、获取接口调用凭证

https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={appid}&secret={secret}

如果调用成功返回 {"access_token ":"fsfnesf5f88sfs558w1212fsf5524fs22fs","expires_in","7200"}

access_token 接口调用凭证

expires_in 凭证有效时间,单位:秒。目前是7200秒之内的值

将返回的结果用封装的对象接受

封装的对象

这里使用了FastJSON格式化属性,但RestTemplate默认使用Jackson,提供了MappingJackson2HttpMessageConverter转换器

图(1)


图(2)RestTemplate转换器选择流程

FastJson的注解不起作用,现在改用FastJson转换器

返回的结果没有赋值到实体属性值

由图(1)可看出RestTemplate支持的转换器释放到数组中,图(2)可看出如果找到能处理Content-Tyep类型的转换器并且Java实体类和Content-Tyep也对应就会执行read()方法并返回,队列中剩下的转换器不会再查找,所以用FastJson转换器替换JackJson转换器的思路就是把:FastJson转换器放在数组的第一个元素,这个这个执行,jsckJson转换器就不会再执行

向RestTemplate中添加FastJson转换器替换JackJson转换器
重写FastJson转换器,新增支持的Content-Tyep类型
获取结果成功

2、微信接口的调用可以参考微信接口文档getWXACodeUnlimit · 小程序

调用接口报错

错误信息
返回的报文实体是image/jpeg类型


RestTemplate默认支持的转换器

RestTmplate默认没有支持image/jpge的转换器,查找资料

BufferedimagehttpMessageConverter支持image类型

如果直接将BufferedimagehttpMessageConverter添加到RestTemplate支持的转换器中也不会起作用,只有是GenericHttpMessageConverter接口的实现类才符合要求

会判断是不是 GenericHttpMessageConverter 类型
BufferedimagehttpMessageConverter和GenericHttpMessageConverter 没有继承关系

现在的解决的方法是(可能还有更优雅的方法),自定义一个转换器MyHttpMessageConverter实现GenericHttpMessageConverter接口,在将BufferedimagehttpMessageConverter实现方法复制过来

自定义转换器


将自定义的转换器添加到restTmplate支持的转换器队列中

image/pg使用BufferedImage对象接受

执行成功了

你可能感兴趣的:(使用RestTemplate调用微信接口获取微信小程序码)