个人案例
- 企信通丨企业信息信用查询
企信通小程序,精准查询企业信用信息。
企信通,企业信用信息查询小程序扫码体验
- 无法连接api.weixin.qq.com
https://developers.weixin.qq.com/miniprogram/dev/api/open-api/login/wx.login.html 服务端Python写的,请求api.weixin.qq.com的时候,时不时的会报错,无法连接: Python代码如下: # 微信登陆 openid_url = "https://api.weixin.qq.com/sns/jscode2session?appid=%s&secret=%s&js_code=%s&grant_type=authorization_code" % ( settings.MINIAPP_SETTING.get(apiuser.app_id), settings.MINIAPP_SETTING.get(apiuser.app_key), code ) req = requests.get(openid_url,verify=False) 错误1: ConnectionError: HTTPSConnectionPool(host='api.weixin.qq.com', port=443): Max retries exceeded with url: /sns/jscode2session?appid=xxxxxxx&secret=xxxxxxx&js_code=xxxxx&grant_type=authorization_code (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x7fad486bb3d0>: F ailed to establish a new connection: [Errno 111] Connection refused',)) 错误2: SSLError: HTTPSConnectionPool(host='api.weixin.qq.com', port=443): Max retries exceeded with url: /sns/jscode2session?appid=xxxxxxx&secret=xxxxxxx &js_code=xxxxxxx&grant_type=authorization_code (Caused by SSLError(SSLError("bad handshake: SysCallError(-1, 'Unexpected EOF')",),)) 错误3: ConnectionError: ('Connection aborted.', BadStatusLine("''",))
2020-06-16 - wx.getLaunchOptionsSync 中获取场景值公众号appid,但不知道公众号名称
小程序通过wx.getLaunchOptionsSync 中获取上述场景值1035对应的公众号appid之后,怎么才能知道这个公众号的名称呢? 原文: “ 部分场景值下还可以获取来源应用、公众号或小程序的appId。获取方式请参考对应API的参考文档。 场景值 场景 appId含义 1035 公众号自定义菜单 来源公众号 ”
2020-03-31 - https://api.weixin.qq.com 114DNS解析时丢包率为什么很高?
在调用微信登录接口过程中,服务端向微信发送登录请求(域名:https://api.weixin.qq.com/)时,出现了大量的丢包问题。经运维排查,114.114.114.114 的 DNS解析到api.weixin.qq.com的IP是:182.254.92.124,这个IP丢包率37.5%;223.5.5.5这个DNS解析到的IP是101.227.162,这个IP丢包率是0。 想问问用114这个DNS解析服务解析到的IP丢包率高的问题,其他开发者有没有出现过类似的问题?
2019-11-28