- 微信网页授权如何取消?
客户使用微信访问我的网页,当时已授权获取其信息(snsapi_userinfo),现在他想取消授权,请问在哪里操作?
09-05 - 网页授权,通过code换取access_token报40029,如何处理?
我有个网页,希望实现这个功能:用户在微信里访问此网页-微信弹窗授权-用户同意-获取昵称、头像信息。我按照这里的资料进行调试:https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/Wechat_webpage_authorization.html,但始终报错,百思不得其解,求协助,谢谢!。 具体报错过程: 1、在微信客户端访问以下链接:https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx7efd19cecb9b38ba&redirect_uri=https%3A%2F%2Fwww%2Ehc%2Dsoftware%2Ecom%2Fhcgis%2Ftest%2FHandleOnWeixin2%2Easp&response_type=code&scope=snsapi_userinfo&state=STATE#wechat_redirect 2、在redirect_uri页面,可以获取到Code,用APPID、SECRET、CODE拼接链接:https://api.weixin.qq.com/sns/oauth2/access_token?appid=[APPID]&secret=[SECRET]&code=[CODE]&grant_type=authorization_code,并访问之,报40029 Invalid Code错误。 3、说明:(1)未做其他动作,不存在Code二次消费 (2)由于连贯动作,不存在Code过期问题。
2023-11-09