- 请求application/json, 返回非json格式的 html错误提示看不到信息,怎么调?
接口请求时, 头消息 application/json ,服务端出现异常,没有按照json格式返回, 这个错误信息就一片空白。 出现这个问题每次另外使用postman在模拟数据查看html提示的错误信息。这里有什么方式设置 [图片]
2021-05-26 - 通过开放平台进行网页授权,授权为什么偶尔返回40001?
场景:用户访问页面,未登录,通过开发平台代替公众号进行网页授权认证。 问题:调用 https://api.weixin.qq.com/sns/oauth2/component/access_token 接口时候 偶尔返回{"errcode":40001,"errmsg":"invalid credential, access_token is invalid or not latest, hints: [ req_id: FhNFv0eNRa-6 ]"} 日志:授权日志截图 [图片] 说明:获取access 接口,如下 $url = "https://api.weixin.qq.com/sns/oauth2/component/access_token?appid=" . $appId . "&code=".$code."&grant_type=authorization_code&component_appid=".$this->component_appid."&component_access_token=".$this->component_access_token; 中变量 只有code,component_access_token ,component_access_token 第一次,第二次,第三次授权都是一样的。code是由 $url = "https://open.weixin.qq.com/connect/oauth2/authorize?appid=" . $this->appid . "&redirect_uri=" . $redirect_uri . "&response_type=code&scope=" . $this->snsapi . "&state=".$state."&component_appid=".$this->component_appid."#wechat_redirect"; 接口跳转返回给我们平台。 为什么第一次,第二次拿取的code 去 获取 access_token ,返回{"errcode":40001,"errmsg":"invalid credential, access_token is invalid or not latest, hints: [ req_id: FhNFv0eNRa-6 ]"}? 请问现在这个问题如何解决?(现在解决方案是,当返回40001,进行重新跳转,但是这个体验非常不好,有的时候跳转3次,有的时候2次,有的时候更多)
2020-12-28 - 微信服务号授权第三方,开放平台有个公众号的消息事件接受不到, 是怎么回事?
客户其他公众号可以收到事件,有一个公众号收不到任何消息 服务appid wx9f1286b061b7375e 公众号:wx9f1286b061b7375e 公众号权限集是有的 [图片]
2020-11-20