我的博客

微信公众号开发错误解决 {"errcode":47001,"errmsg":"data format error hint: [xrlw6a07614125]"} 发送模板消息

目录

发送模板消息的时候出现错误,python3,使用 requests 发送 post 请求。

1
{"errcode":47001,"errmsg":"data format error hint: [xrlw6a07614125]"}

问题是 post 的 data 要 json.dumps 一下就好了。

1
2
3
data['touser'] = t.openid
url = 'https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=' + get_access_token()
r = requests.post(url, data)

最后一句改为

1
r = requests.post(url, json.dumps(data))

评论无需登录,可以匿名,欢迎评论!