const res = await axios.post(
`https://api.weixin.qq.com/wxa/getwxacode?access_token=${token}`,
JSON.stringify({
path: 'pages/index/index',
width: 430,
auto_color: false,
is_hyaline: true,
line_color: { r: 0, g: 0, b: 0 }
}),
{
responseType: 'arraybuffer',
headers: { 'Content-Type': 'application/json' }
}
)
一直返回jpeg的格式,是不是接口被降级了
