javascript - 微信授权登录code 40163
三叔
三叔 2017-06-15 09:22:23
0
2
2915

1.从公众账户 路径进入下面的 页面
""https://---------/wxCode?appid=--------&redirect_uri=-------&response_type=code&scope=snsapi_userinfo

2.wxCode的html 代码是 github 上的代码 源码来源 https://github.com/HADB/GetWe...

代码如下:
<!DOCTYPE html>
<html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>微信登录</title>
    </head>
    <body>
        <script>
            var GWC = {
                version: '1.1.1',
                urlParams: {},
                appendParams: function(url, params) {
                    if (params) {
                        var baseWithSearch = url.split('#')[0];
                        var hash = url.split('#')[1];
                        for (var key in params) {
                            var attrValue = params[key];
                            if (attrValue !== undefined) {
                                var newParam = key + "=" + attrValue;
                                if (baseWithSearch.indexOf('?') > 0) {
                                    var oldParamReg = new RegExp('^' + key + '=[-%.!~*\'\(\)\w]*', 'g');
                                    if (oldParamReg.test(baseWithSearch)) {
                                        baseWithSearch = baseWithSearch.replace(oldParamReg, newParam);
                                    } else {
                                        baseWithSearch += "&" + newParam;
                                    }
                                } else {
                                    baseWithSearch += "?" + newParam;
                                }
                            }
                        }
                        if (hash) {
                            url = baseWithSearch + '#' + hash;
                        } else {
                            url = baseWithSearch;
                        }
                    }
                    return url;
                },
                getUrlParams: function() {
                    var pairs = location.search.substring(1).split('&');
                    for (var i = 0; i < pairs.length; i++) {
                        var pos = pairs[i].indexOf('=');
                        if (pos === -1) {
                            continue;
                        }
                        GWC.urlParams[pairs[i].substring(0, pos)] = decodeURIComponent(pairs[i].substring(pos + 1));
                    }
                },
                doRedirect: function() {
                    var code = GWC.urlParams['code'];
                    var appId = GWC.urlParams['appid'];
                    var scope = GWC.urlParams['scope'] || 'snsapi_base';
                    var state = GWC.urlParams['state'];
                    var redirectUri;
                    if (!code) {
                        //第一步,没有拿到code,跳转至微信授权页面获取code
                        redirectUri = GWC.appendParams('https://open.weixin.qq.com/connect/oauth2/authorize#wechat_redirect', {
                            'appid': appId,
                            'redirect_uri': encodeURIComponent(location.href),
                            'response_type': 'code',
                            'scope': scope,
                            'state': state,
                        });
                    } else {
                        //第二步,从微信授权页面跳转回来,已经获取到了code,再次跳转到实际所需页面
                        redirectUri = GWC.appendParams(GWC.urlParams['redirect_uri'], {
                            'code': code,
                            'state': state
                        });
                    }
                    location.href = redirectUri;
                }
            };

        </script>
    </body>
</html>

3.进入 参数的页面时 redirect_uri=------- ,将code从url获取下来 保存到cookie 里 记录了下来。

4.在这个页面里 调用了 一个php 接口。 将code 获取到 传递过去, php 拿到这个code 调用微信接口获取access_token, 接口返回信息 一直都是errcode = 40163;errmsg = code been used 人都快崩溃了。

由于以上 无法解决问题, 又做了如下调整:

1.从Php文件做入口,直接走授权, 跳转页为当前域名下的 H5 html文件, 授权通过后,跳转页 html 参数中带有code。
2.在此H5 html中请求 php接口 并将 url中的code 传递过去,
3.php 通过传递过来的 code 获取access_token ,同样 报errcode = 40163;errmsg = code been used

代码如下 :
入口路径
ht tps://api/getWXCode?redirect_uri=htt ps://api/Minicustomer/receive(此处是php文件中的一个函数)

渲染出来的页面url 带有 code 参数 在此页面中 通过
$.getJSON("https://api*/WxRedPack?code=" + $.isUrlPar("code") + "&amount=" + $.cookie("amount") + "&callback=?", function(data) {

code 传递给php 接口, 调用微信接口获取 access_token 的时候 一直报 errcode = 40163;errmsg = code been used

崩溃!!!

故,寻求 导致原因, 和解决方法。

三叔
三叔

全部回复(2)
代言

code只能被使用一次,js中获取的code再传到其他页面就是使用了2次;我的建议是都从php里面操作,php里面获取到code之后直接再获取access_token

曾经蜡笔没有小新

GWC.urlParams['redirect_uri']应该表示的是具体的后台地址吧

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!