企业微信代理
ZYHWJL

企业微信代理方案

企业微信可信IP为固定IP,而服务端没有固定IP时可通过反向代理实现,Nginx下添加如下配置,并将代理服务器添加为可信IP即可。

1
2
3
4
5
6
7
8
location /cgi-bin/gettoken 
{
proxy_pass https://qyapi.weixin.qq.com;
}
location /cgi-bin/message/send
{
proxy_pass https://qyapi.weixin.qq.com;
}