连接api.weixin 接口被拒绝,求救?
一直好好运行的程序,前2天连接微信的接口程序时不时报错,而现在完全连接不上了。经过我反反复复测试,感觉非常奇怪,奇怪的是: 我用组件连接企业微信(qyapi.weixin.qq.com)的接口就一切正常,但同样一模一样的代码,只是把URL地址换成微信接口 (api.weixin.qq.com )就不正常,显示 “A connection with the server could not be established”。 分析: 如果是服务器的组件有问题,那为什么 1、之前没有问题,2 为什么现在企业微信也没有问题,就只是微信接口有问题? 如果说微信接口被屏蔽,我直接在浏览器测试,又可以放问 api.weixin.qq.com 非常郁闷,防火墙没有问题,云服务器进出规则没有问题,大家有什么看法? 代码如下: URL="https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=XXXXXX&secret=XXXXXXb"(这个地址就不行)
Url="https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=XXXX&corpsecret=XXXXXX" '(这个可以)
set XmlObj=server.createobject("MSxml2.ServerxmlHTTP")
XmlObj.setTimeouts 10000,10000,10000,10000
XmlObj.open "GET",url, False
XmlObj.send
---->- 报错 :“A connection with the server could not be established”。