當前位置:首頁 » 網站資訊 » 網站微信登錄appid如何獲得
擴展閱讀
相片製成素描的手機軟體 2025-01-31 20:26:57
消除電腦密碼win10 2025-01-31 20:09:31

網站微信登錄appid如何獲得

發布時間: 2023-09-25 01:26:29

❶ 網站應用接入微信登錄

1.網站接入微信登錄的好處

網站接入微信登錄,微信登錄使網站可以免除注冊的流程,並充分利用龐大的微信用戶群來實現快速傳播;網站接入微信登錄後,用戶只需要使用手機掃碼就可登錄,簡化用戶注冊流程,更有效率的提高轉化用戶流量。

2.站接入微信登錄之前需要申請

接入微信登錄前,網站需首先進行申請,獲得對應的appid與appkey,以保證後續流程中可正確對網站與用戶進行驗證與授權;我們以瓴碼官網http://www.zeropaas.com申請。

3.瓴碼官網前端增加相關代碼

let nowUrl = location.href;
let result = /code=(w*)&state=([0-9]*)/.exec(nowUrl);

if(result){
window.parent.postMessage(nowUrl,'*');
}

4.網站前端將微信登錄二維碼圖標內嵌至一個p中,並顯示該p

!function (a, b, c) {
function d(a) {
var c = "default";
a.self_redirect === !0 ? c = "true" : a.self_redirect === !1 && (c = "false");
var d = b.createElement("iframe"),
e = "https://open.weixin.qq.com/connect/qrconnect?appid=" + a.appid + "&scope=" + a.scope + "&redirect_uri=" + a.redirect_uri + "&state=" + a.state + "&login_type=jssdk&self_redirect=" + c + '&styletype=' + (a.styletype || '') + '&sizetype=' + (a.sizetype || '') + '&bgcolor=' + (a.bgcolor || '') + '&rst=' + (a.rst || '');
e += a.style ? "&style=" + a.style : "", e += a.href ? "&href=" + a.href : "", d.src = e, d.frameBorder = "0", d.allowTransparency = "true", d.scrolling = "no", d.width = "300px", d.height = "400px";
var f = b.querySelector('.weChatLogin_col_weChatBouncedDiv');//微信二維碼內嵌p
f.innerHTML = "", f.appendChild(d)
}
a.WxLogin = d
}(window, document);

const state = Number(new Date()).toString();//獲取狀態值
window.sessionStorage.setItem('state', state )//暫存狀態值
const obj = new WxLogin({//實例化一個二維碼
self_redirect: true,
id: "weChatBouncedDiv",//微信二維碼圖標內嵌p的id
appid: "wxfb8bf3273365770a",//應用唯一標識
scope: "snsapi_login",
redirect_uri: "http%3a%2f%2fzeropaas.com",//回調地址
state: state ,//用於保持請求和回調的狀態,授權請求後原樣帶回給第三方;該參數可應用於防止csrf攻擊(跨站請求偽造攻擊)
});

5.網站前端微信登錄授權成功之後的處理

window.onmessage = function(e) {//微信登錄授權成功後,官網觸發該消息
let url = e.data;//e.data="http://www.zeropaas.com/?code=xxx&state=xxx"
if(url.indexOf('?') != -1){
url = url.substr(url.indexOf('?'))//url="?code=xxx&state=xxx"
let arr = url.substr(1).split('&');//arr=["code=xxx","state=xxx"]
arr = arr.map(item => {
item = item.split('=')
let map = new Map()
map.set(item[0],item[1])
item = Object.fromEntries(map)
return item
})//arr=[{code:"xxx"},{state:"xxx"}]
let oldState = window.sessionStorage.getItem('state');
let newState = arr[1].state;
//
// loadingDiv.style.display = 'flex'
// loadingDiv.innerHTML = '正在登錄中...'
$this.showVessel('loadingDiv',true,()=>{//顯示正在登錄中
$this.sm['loading'].startMole(function () {
$this.showSubMole('loading', true, function () {
if(oldState === newState){
$this.ep.thirdLogin(0,arr[0].code,1,1,0,null,function (result) {//向雲端發送第三登錄事件,code是微信登錄碼
if (result === null) {
$this.$router.push('/')//微信登錄成功,並且不要綁定手機號
} else {//微信登錄成功,並且需要綁定手機號
$this.openID = result//微信用戶ID
$this.showSubMole('loading', false, function () {}, function () {})
$this.showVessel('loadingDiv',false,()=>{},()=>{})//隱藏正在登錄中
$this.showBindingPhone()//綁定手機號
}
},function (err) {
console.log(err)
})
}
}, function () {})
}, function () {})
},()=>{})
window.onmessage = null
}
},

6.網站雲端獲取微信openid和access_token

function getOpenid_WX(appid,appSecret,code,successCB, errorCB){//獲取微信openid和token
const request = require(global.nodePath + "/node_moles/request");
let url1= 'https://api.weixin.qq.com/sns/oauth2/access_token?appid=' + appid + '&secret=' + appSecret + '&code=' + code + '&grant_type=authorization_code'
request.get(
{
url: url1,
method: "GET",
json: true,
headers: {
"Content-type": "application/json",
},
},function (error, response, body) {
if (response.statusCode == 200) {
let data = JSON.stringify(body, null, 4);//從一個對象解析出字元串,第三個參數是格式化縮進格式按照四個字元縮進
let data1 = (JSON.parse(data));
let access_token = data1.access_token;
let openid = data1.openid;
successCB(access_token,openid);
}else {
errorCB(['獲取微信信息失敗!狀態碼:'+ response.statusCode]);
}
}
);
}

7.微信登錄和QQ登錄的區別

微信登錄可以內嵌網站登錄頁面,也可以打開微信登錄授權頁面,QQ登錄不可以內嵌網站登錄授權頁面,必須打開QQ登錄授權頁面,如果是打開微信或QQ登錄授權頁面,則登錄授權成功後必須關閉該頁面。

微信登錄回調地址可以指定一級根目錄或二級子目錄,比如 "http%3a%2f%2fzeropaas.com "或"http%3a%2f%2fzeropaas.com/qqLogin", QQ登錄回調地址必須指定二級子目錄,比如 "http%3a%2f%2fzeropaas.com/qqLogin"