91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

node如何進行微博第三方登錄

發布時間:2022-11-02 09:41:29 來源:億速云 閱讀:142 作者:iii 欄目:web開發

這篇文章主要介紹“node如何進行微博第三方登錄”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“node如何進行微博第三方登錄”文章能幫助大家解決問題。

實現效果

1、點擊微博登錄按鈕登錄

node如何進行微博第三方登錄

2、直接掃碼登錄

具體實現

一、申請weibo網站接入

登錄https://open.weibo.com/connect申請web網站接入
本地開發的時候應用地址寫:127.0.0.1

node如何進行微博第三方登錄
node如何進行微博第三方登錄
node如何進行微博第三方登錄

二、點擊按鈕微博登錄

采用OAuth3.0授權

1. 生成微博登錄授權驗證碼

const weiboUrl = `https://api.weibo.com/oauth3/authorize?client_id=${weiboConfig.appKey}&response_type=code&redirect_uri=${weiboConfig.redirectUrl}`

appKey: 創建應用成功后weibo給你的appKey
redirectUrl: 用戶授權成功后跳轉的你的前端頁面,我這里寫的是http://127.0.0.1:8080/login

2. 授權頁面跳轉,獲取用戶code

用戶授權登錄后,會跳轉到你上一步寫的redirectUrl,并帶上用戶code,url類似于http://127.0.0.1:8080/login?code=abcdef

vue監聽路由url,如果url上有code就去請求后端的登錄回調接口

created() {
    const { code } = this.$route.query;
    if (code) {
      loginCallback({ code }).then((res) => {
        this.$message({
          message: `${res.nickname} 歡迎您`,
          type: "success",
        });
        this.setUser(res);
        this.$router.push("/tool/qr");
      });
    }
  }

3. 后端登錄回調接口,通過用戶code獲取accessToken,再通過accessToken獲取用戶信息,完成登錄

   async loginCallback(ctx) {
      let { code } = ctx.request.body
      if (!code) {
         return ctx.error(errCode.PARAMS_ERROR, '參數錯誤')
      }
      // 獲取accessToken
      const { access_token, uid } = await got.post('https://api.weibo.com/oauth3/access_token', {
         form: {
            client_id: weiboConfig.appKey,
            client_secret: weiboConfig.appSecret,
            grant_type: 'authorization_code',
            redirect_uri: weiboConfig.redirectUrl,
            code
         }
      }).json()
      // 通過accessToken獲取UserInfo
      const { id, name: nickname, avatar_hd: avatar } = await got.get(`https://api.weibo.com/2/users/show.json?access_token=${access_token}&uid=${uid}`).json()
      // 在自己的系統內創建User
      let [user, isCreate] = await WeiboUser.upsert({ id, nickname, avatar })
      // 生成登錄Token,通過userType區分是微博登錄用戶還是系統賬號登錄用戶
      const token = await jwt.createToken({ ...user.toJSON(), userType: 'weiboUser' })
      return ctx.success({ nickname, avatar, token })
   }

三、微博掃碼登錄
1. 生成微博掃碼登錄二維碼

 async getWeiboLoginQr(ctx) {
      const qrApi = `https://api.weibo.com/oauth3/qrcode_authorize/generate?client_id=${weiboConfig.appKey}&redirect_uri=${weiboConfig.redirectUrl}&scope=&response_type=code&state=&__rnd=${Date.now()}`
      const { url, vcode } = await got.get(qrApi).json()
      return ctx.success({ weiboQrUrl: url, vcode })
}

返回的url就是微博登錄二維碼url,vcode相當于此二維碼唯一標識,用來查詢用戶是否掃碼

2. 前端不停輪詢,查詢此二維碼是否被掃碼授權

前端:

 const id = setInterval(() => {
          getWeiboLoginQrStatus({ vcode }).then((res) => {
            const { status, url } = res;
            if (status === "3") {
              window.location = url;
              clearInterval(id);
            }
          });
}, 3000);

后端:

   async getWeiboLoginQrStatus(ctx) {
      const { vcode } = ctx.request.query
      if (!vcode) {
         return ctx.error(errCode.PARAMS_ERROR, '參數錯誤')
      }
      const queryQrApi = `https://api.weibo.com/oauth3/qrcode_authorize/query?vcode=${vcode}&__rnd=${Date.now()}`
      const { status, url } = await got(queryQrApi).json()
      return ctx.success({ status, url })
   }

如果status為3,代碼用戶已經掃碼授權了,同時返回的url即點擊按鈕登錄后的前端回調url。之后的步驟就跟2. 授權頁面跳轉,獲取用戶code一模一樣了.

關于“node如何進行微博第三方登錄”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宜阳县| 梁山县| 南康市| 东源县| 拉萨市| 禄丰县| 灵丘县| 盐池县| 甘泉县| 三门峡市| 绥德县| 浪卡子县| 酒泉市| 岳阳县| 乌拉特后旗| 黄平县| 厦门市| 揭东县| 贞丰县| 陵川县| 西峡县| 平昌县| 昭苏县| 怀安县| 襄汾县| 铅山县| 盱眙县| 涟水县| 松原市| 天祝| 杭州市| 龙泉市| 嵊州市| 建宁县| 寻乌县| 常山县| 荔波县| 三门县| 行唐县| 新竹市| 恩施市|