- 公众号消息模板,之前发送信息正常,后来不知道什么时间开始优势可以发送有时不能发送?
[图片] [图片] 使用的是上面这个模板,经常不能发送模板信息。
2024-07-17 - 小程序、公众号绑定在微信开放平台下如何发送模板消息?
我的小程序、公众号和微信开放平台是一个主体,并将小程序、公众号全部绑定,使用小程序appid获得小程序openid,使用小程序APPID获得access_token,最后发送模板消息, 提示errcode=40003,invalid openid rid: 651f9a24-6d8d004d-5f77b68c 不能发送模板消息不知道问题出在哪里, 个人理解问题是否以下几个方面 1、用小程序openid作为模板 touser 是否可以,是不是还需要过去公众号openid 如果需要如何通过小程序openid获得公众号openid 2、access_token使用小程序appid获得是不是有问题, 模板消息发送已经困扰很久,请高手指教!!!
2023-10-06 - 公众号通知消息最近为什么不能收到发送的消息?
公众号之前发送通知消息一直正常,从19号开始后台程序没有变动,后台看到也在正常发送消息,但用户收不到消息,不知道问题在哪里,谁遇到过类似的问题,请提示一下。
2023-09-28 - 微信模板消息发送信息丢失内容?
微信模板其中有一个“first”信息,开始开发时,发送的信息中包含此信息,现在这个first信息在报警信息中没有出现,检测数据发现,这个first信息没有问题,只是在发送过程中消失,请问谁知道是什么问题。 这个是模板实例 [图片] 这个是模板[图片] 下面是实际收到的报警信息 [图片] 之前发送的信息如下,现在中间的说明信息没有了: [图片]
2023-05-10 - 网页接口测试工具,提示红色曲线内容?
网页接口测试工具测试,测试结果提示用户openid有问题,这个事由小程序后台使用code码获得的用户openid,请教如何获得有效的openid。 [图片] [图片]
2023-04-13 - 关于模板消息API没有授权的问题?
我们开发一个发送设备状态消息的后台程序,公众号已经认证通过,模板消息接口已经获得,使用模板消息、统一服务消息Api接口发送消息,得到的回复全部是48001 API接口没有授权,回复如下,在公众号中做过一些设置,其中js接口安全域名设置放置验证文件,因为后台软件问题,前台不能验证,但是这个之前做过类似的项目,使用统一服务模板也可以发送消息,现在进行新的项目开发,消息一直不能发送,不知什么原因。 {"errcode":48001,"errmsg":"api unauthorized rid: 643769e1-59ac4596-022eed7f"} 看微信提供的文档,模板消息有几个接口可以使用,一个是之前使用的统一服务消息接口,一个是模板消息接口,但是这两个接口回复的内容都是API接口 没有授权。 # url = 'https://api.weixin.qq.com/cgi-bin/message/wxopen/template/uniform_send?access_token='+access_token # url = 'https://api.weixin.qq.com/cgi-bin/message/template/send?access_token='+access_tokenx 不论是在这里还是在度娘都有很大遇到类似API接口授权问题的,但是都没有一个明确的解决方案,微信官方对此也没有一个权威的说法,不知道怎么操作, ,恳请大神予以详细说明,解惑。 access_token使用的是公众APPID和密钥获得。
2023-04-13 - 消息模板发送消息,提示API没有授权,不知如何设置授权?
消息模板回调信息如下: {"errcode":48001,"errmsg":"api unauthorized rid: 64362914-254c00b6-6af793bc"} 微信公众平台接口调试工具,调试结果如下,不知如何操作,请求帮助。[图片] [图片]
2023-04-12 - 请帮助看一下为什么程序不能发送模板消息?
微信模板发送消息程序如下,发送回调res 显示200,但微信断没有任何显示。 #-*- coding:utf-8 -*- # 正式上线微信报警程序 import requests url = 'https://api.weixin.qq.com/cgi-bin/token' params = { 'grant_type': 'client_credential', 'appid': 'wxcd2f2f5a5861234', # 小程序id 'secret': '5294a03f36193193d3d3db6033d61234', } try: response = requests.get(url=url, params=params) res = response.json() access_token = res['access_token'] print('access_token',access_token) except Exception as e: print(e) # https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=ACCESS_TOKEN url = 'https://api.weixin.qq.com/cgi-bin/message/template/send?access_token='+access_token print('url',url) params = { "touser":"oMe5a5Vde5r8uNfHNI86nD5w1234", "template_id":"SYnaga93yBdJFR5U1LAXHYcAQ0p4lUuX38W925aORjE", "url":"http://weixin.qq.com/download", "topcolor":"#FF0000", "data": { "first": { "value": "您的设备已触发设备报警。" }, "keyword1": { "value": "1222032091" }, "keyword2": { "value": "温湿度恒温箱" }, "keyword3": { "value": "2023年04月07日19时24分" }, "keyword4": { "value": "温度超标 45°C" }, "remark": { "value": "2023年04月07日19时24分" } } } res = requests.post(url, json=params, timeout=5) print('res',res)
2023-04-12 - 后台发送模板消息,微信没有收到任何消息?
发送后提示消息: Starting new HTTPS connection (1): api.weixin.qq.com:443 2023-04-11 13:56:14,910 - /home/DeviceAlarm/AlarmMessage/Alarm_venv/lib/python3.8/site-packages/urllib3/connectionpool.py[line:456] - DEBUG: https://api.weixin.qq.com:443 "POST /cgi-bin/message/template/send?access_token=67_7Imu1xkXh--QXKu2q7VFfJH32bA2xRp1giGku5Kqg6nKmKoYAn8qF_vm_YFq7KC0SmrxyGCN9M4dRfLYZqay_SrrksOkHtMy2_XdnWyjHAqHdfsJIgsCp65KHogOMMiAHAYWW HTTP/1.1" 200 77 下面是发送代码 # 发送模板消息 def post_data(self, device): access_token = self.get_token() time = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S') # 统一服务消息 # https: // api.weixin.qq.com / cgi - bin / message / template / send?access_token = ACCESS_TOKEN url = "https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=" + access_token # url = "https://api.weixin.qq.com/cgi-bin/message/wxopen/template/uniform_send?access_token=" + access_token params = { "touser": 'oMe5a5Vde5r8uNfHNI86nD5wL0Nv', "template_id": self.template_id, "data": { "first": { "value": device['first'] # "value": "您的设备已触发设备报警。" }, "keyword1": { "value": device['device_num'] # "value": "1222032091" }, "keyword2": { "value": device['device_name'] # "value": "温湿度恒温箱" }, "keyword3": { "value": device['get_time'] # "value": "2021年06月07日19时24分" }, "keyword4": { "value": device['content'] # "value": "温度超标 45°C" }, "remark": { "value": time } } } response = requests.post(url, json=params)
2023-04-11 - 授权网页获取用户信息,域名根目录放置文件不成功?
[图片] linux环境,使用Nginx,映射home文件夹
2023-03-29