- 发送模板消息后得到响应:failed:freq limit 什么意思,要怎么解决?
我公司的服务号发送模板消息后得到响应如下图,这个 freq limit 什么意思? [图片] 今天发送的数量没有达到模板消息上限 [图片]
2021-10-10 - 重启微信后台java服务只推送一条模板消息,其他显示推送成功但是微信用户没有收到,如何排查?
模板消息接收到响应errorcode:0,msg:"ok",但是客户微信没有收到消息,要怎么排查? 我公司的服务号,自己的微信也在其中,测试推送模板消息给自己,java 后台接受到响应是 errorcode:0,msg:"ok",但是我的微信没有收到模板消息。我要如何排查问题? 还是补充完整点,下面是通过 openid 请求微信用户的信息,这里使用了我自己的 openid [图片] 能看到 nickname 是我微信的昵称 java 后端发送的模板消息是:(把公司域名给改掉了) {"touser":"ovC8bs78-EymCeGDgtycJKOXGTh0","template_id":"VOB2X8eIuxbIP1yzVjGNLnfBMN01NDHU-pQw00LhS8c","url":"https://www.xxxx/wxpadfe/processp?iid=4421161&mill=昆山针织","miniprogram":{"appid":"","pagepath":""},"data":{"first":{"value":"订单刷卡进度:","color":"#4876FF"},"keyword1":{"value":"昆山针织,金阳,210303001","color":"#4876FF"},"keyword2":{"value":"2*3单法,1.75M*175G,孔雀蓝,G21-0031","color":"#4876FF"},"keyword3":{"value":"3缸","color":"#4876FF"},"keyword4":{"value":"成品打卷","color":"#e1251b"},"keyword5":null,"remark":{"value":"2021-03-13 08:48:02","color":"#4876FF"},"url":"https://www.xxx/wxpadfe/processp?mill=昆山针织&vatNum=R11030113"}} 发送模板消息后接受到响应是: {"errcode":0,"errmsg":"ok","msgid":2082948024988647426}
2021-10-09 - PC浏览器、微信开发者工具都可以打开,手机微信中服务号的H5页面打不开?
PC端 Chrome 和 firefox 都可以打开,使用微信开发者工具也可以打开,但是在手机微信中(服务号)无法打开H5页面。我的是 Angular 开发的前端,前端时间一直运行正常,昨天下午前端页面新增了一个页面编译后上传到服务器,当时看了没问题,晚上10点发现页面打不开,到现在也无法打开。。。我要哭了。这是什么问题 ?我服务器中使用了 ngixn ,其中还有反向代理的 Springboot 的 jar 项目。下面贴出 nginx 的配置,配置文件已经在 CentOS7中使用 vim 重新编辑了一遍,怕有因为在WINDOWS下编辑导致的空格、换行问题,配置内容没有更改,只是重新将空行和空格敲了一遍,然后使用 nginx -s reload 仍然没有解决 (没有报语法错误),十万火急求救。 user nginx; worker_processes 4; error_log /var/log/nginx/error.log warn; pid /var/run/nginx.pid; events { worker_connections 1024; } http { include /etc/nginx/mime.types; default_type application/octet-stream; log_format main '$remote_addr - $host - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log /var/log/nginx/access.log main; sendfile on; #tcp_nopush on; keepalive_timeout 65; #gzip on; server{ listen 80; listen 443 ssl; server_name www.我的域名.club; ssl_certificate 1_www.我的域名.club_bundle.crt; ssl_certificate_key 2_www.我的域名.club.key; ssl_session_cache shared:SSL:1m; ssl_session_timeout 5m; ssl_ciphers HIGH:!aNULL:!MD5; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_prefer_server_ciphers on; #root /projfe; location /wxpadfe { alias /projfe/wxpadfe; index index.html; try_files $uri $uri/ /index.html; } location /atoolsfe { alias /projfe/atoolsfe; index index.html; try_files $uri $uri/ /index.html; } location /test { alias /projfe/test; index index.html; } location /zorrodemo { alias /projfe/zorrodemo; index index.html; try_files $uri $uri/ /index.html; } location /wxpadbe { proxy_pass http://127.0.0.1:7070; } location /atoolsbe { proxy_pass http://127.0.0.1:7073; } #error_page 404 /index.html; #location = /index.html { #root /projfe/wxpadfe; #} } include /etc/nginx/conf.d/*.conf; }
2020-09-17