日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網(wǎng)為廣大站長提供免費收錄網(wǎng)站服務(wù),提交前請做好本站友鏈:【 網(wǎng)站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(wù)(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網(wǎng)站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

怎么進(jìn)行微博第三方登錄?下面本篇文章給大家介紹一下使用node實現(xiàn)微博第三方登錄的方法,希望對大家有所幫助!


淺析node怎么進(jìn)行微博第三方登錄


接入微博第三方登錄可以免注冊,對用戶的體驗更好,今天我們就用nodejs實現(xiàn)微博第三方登錄(用其它語言也可以)。


實現(xiàn)效果

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


淺析node怎么進(jìn)行微博第三方登錄


2、直接掃碼登錄


具體實現(xiàn)

一、申請weibo網(wǎng)站接入

登錄https://open.weibo.com/connect申請web網(wǎng)站接入

本地開發(fā)的時候應(yīng)用地址寫:127.0.0.1


淺析node怎么進(jìn)行微博第三方登錄

淺析node怎么進(jìn)行微博第三方登錄

淺析node怎么進(jìn)行微博第三方登錄

二、點擊按鈕微博登錄

采用OAuth2.0授權(quán),詳細(xì)可參考文檔 https://open.weibo.com/wiki/Connect/login

1. 生成微博登錄授權(quán)驗證碼

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

appKey: 創(chuàng)建應(yīng)用成功后weibo給你的appKey

redirectUrl: 用戶授權(quán)成功后跳轉(zhuǎn)的你的前端頁面,我這里寫的是http://127.0.0.1:8080/login

2. 授權(quán)頁面跳轉(zhuǎn),獲取用戶code

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

vue監(jiān)聽路由url,如果url上有code就去請求后端的登錄回調(diào)接口

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. 后端登錄回調(diào)接口,通過用戶code獲取accessToken,再通過accessToken獲取用戶信息,完成登錄

async loginCallback(ctx) {
   let { code } = ctx.request.body
   if (!code) {
      return ctx.error(errCode.PARAMS_ERROR, '參數(shù)錯誤')
   }
   // 獲取accessToken
   const { access_token, uid } = await got.post('https://api.weibo.com/oauth2/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()
   // 在自己的系統(tǒng)內(nèi)創(chuàng)建User
   let [user, isCreate] = await WeiboUser.upsert({ id, nickname, avatar })
   // 生成登錄Token,通過userType區(qū)分是微博登錄用戶還是系統(tǒng)賬號登錄用戶
   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/oauth2/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相當(dāng)于此二維碼唯一標(biāo)識,用來查詢用戶是否掃碼


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

前端:

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, '參數(shù)錯誤')
   }
   const queryQrApi = `https://api.weibo.com/oauth2/qrcode_authorize/query?vcode=${vcode}&__rnd=${Date.now()}`
   const { status, url } = await got(queryQrApi).json()
   return ctx.success({ status, url })
}

如果status為3,代碼用戶已經(jīng)掃碼授權(quán)了,同時返回的url即點擊按鈕登錄后的前端回調(diào)url。之后的步驟就跟2. 授權(quán)頁面跳轉(zhuǎn),獲取用戶code一模一樣了.


分享到:
標(biāo)簽:node登錄 微博第三方登錄
用戶無頭像

網(wǎng)友整理

注冊時間:

網(wǎng)站:5 個   小程序:0 個  文章:12 篇

  • 51998

    網(wǎng)站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網(wǎng)站吧!
最新入駐小程序

數(shù)獨大挑戰(zhàn)2018-06-03

數(shù)獨一種數(shù)學(xué)游戲,玩家需要根據(jù)9

答題星2018-06-03

您可以通過答題星輕松地創(chuàng)建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學(xué)四六

運動步數(shù)有氧達(dá)人2018-06-03

記錄運動步數(shù),積累氧氣值。還可偷

每日養(yǎng)生app2018-06-03

每日養(yǎng)生,天天健康

體育訓(xùn)練成績評定2018-06-03

通用課目體育訓(xùn)練成績評定