1.從公眾帳號路徑進入下面的頁面
""https://---------/wxCode?appid=--------&redirect_uri=---- ---&response_type=code&scope=snsapi_userinfo
代码如下:
<!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 傳遞過去,
程式碼如下:
入口路徑 ht tps://api/getWXCode? redirect_uri=htt ps://api
渲染出來的頁面url 帶有code 參數在此頁面中透過$.getJSON("https://api*
code 傳遞給php 接口, 呼叫微信介面取得 access_token 的時候 一直報 errcode = 40163;errmsg = code been used
崩溃!!!
故,尋求 導致原因, 和解決方法。 ###代言2017-06-15 09:24:23
code只能被使用一次,js中取得的code再傳到其他頁面就是使用了2次;我的建議是都從php裡面操作,php裡面取得到code之後直接再取得access_token