- 按照你们的接口描述对接有问题啊
https://developers.weixin.qq.com/doc/oplatform/Third-party_Platforms/Mini_Programs/subscribe_template/add_template.html
2020-04-10 - 添加订阅消息模版的接口出现问题
https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/subscribe-message/subscribeMessage.addTemplate.html 这个接口的描述和实际的API不符合。按照如下的方式进行添加成功: curl "https://api.weixin.qq.com/wxaapi/newtmpl/addtemplate?access_token=32_Vh5eaYUySqM6VR0QKivAsdfVuAZWGQAPALCZAb_Tii4LAdhpCexCEgjCVuEMAtG-30LewiiSJ_BLMh82wr1FATfK5o6mlWZwg9Y8MuZ46q9QQlAfIORC7rHTF93spAK8aKMLYKQKWjxBZiXtKOBjAJARVI" -d "kidList[0]=1&kidList[1]=2&kidList[2]=3&sceneDesc=名片交换&tid=1020" 但是文档中描述是需要json格式POST过去。 另外,通过程序按照 kidList[0]=1&kidList[1]=2&kidList[2]=3&sceneDesc=名片交换&tid=1020进行urlencode编码,Content-Type:application/x-www-form-urlencoded;charset=utf-8,POST过去的时候,也会出现缺少tid的情况。
2020-04-08