溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何實(shí)現(xiàn)uni-app微信小程序授權(quán)登錄

發(fā)布時(shí)間:2022-01-04 10:32:01 來(lái)源:億速云 閱讀:1768 作者:小新 欄目:開(kāi)發(fā)技術(shù)

小編給大家分享一下如何實(shí)現(xiàn)uni-app微信小程序授權(quán)登錄,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

如何實(shí)現(xiàn)uni-app微信小程序授權(quán)登錄

一、appID相關(guān)申請(qǐng)和配置

1. appid獲取方式

登錄微信公眾平臺(tái)

官網(wǎng)鏈接:https://mp.weixin.qq.com/

第一次需要小伙伴們點(diǎn)擊注冊(cè)按鈕,進(jìn)行注冊(cè),如果有賬號(hào),直接掃描登錄即可

如何實(shí)現(xiàn)uni-app微信小程序授權(quán)登錄

官網(wǎng)小程序鏈接:

如何實(shí)現(xiàn)uni-app微信小程序授權(quán)登錄

2. appID配置

在manifest.json中輸入申請(qǐng)的微信小程序id

如何實(shí)現(xiàn)uni-app微信小程序授權(quán)登錄

二、獲取用戶基礎(chǔ)數(shù)據(jù)

這里給小伙伴們演示二種api

2.1. 獲取用戶信息

可以使用uni.getUserProfile請(qǐng)求用戶授權(quán)獲取用戶信息, 也可以使用uni.getUserInfo獲取

如何實(shí)現(xiàn)uni-app微信小程序授權(quán)登錄

授權(quán)成功后獲取到的用戶信息在userInfo中:

如何實(shí)現(xiàn)uni-app微信小程序授權(quán)登錄

頁(yè)面部分:

  <button class="login-btn" type="primary" @click="getUserInfo">
        微信用戶一鍵登錄
      </button>

js部分:

 methods: {
    getUserInfo() {
      uni.getUserInfo({
        provider: 'weixin',
        success: (res) => {
          console.log('getUserInfo', res);
        },
      });
    },
   }

獲取的用戶基礎(chǔ)數(shù)據(jù)(無(wú)openid=》微信用戶唯一標(biāo)識(shí))

如何實(shí)現(xiàn)uni-app微信小程序授權(quán)登錄

2.2. 獲取用戶信息2

可以使用uni.getUserInfo請(qǐng)求用戶授權(quán)獲取用戶信息

頁(yè)面一樣,js部分:

   getUserInfo() {
      uni.getUserProfile({
        desc: '登錄后可同步數(shù)據(jù)',
        lang: 'zh_CN',
        success: (res) => {
          console.log('getUserProfile', res);
        },
      });
    },

獲取的用戶基礎(chǔ)數(shù)據(jù)(無(wú)openid=》微信用戶唯一標(biāo)識(shí))

如何實(shí)現(xiàn)uni-app微信小程序授權(quán)登錄

總結(jié):uni.getUserProfile和uni.getUserInfo 二個(gè)api獲取的用戶數(shù)據(jù)基本一樣,都無(wú)openid=》微信用戶唯一標(biāo)識(shí)。

三、調(diào)用登錄api

3.1. 登錄api

使用uni.login方法,provider參數(shù)輸入&rsquo;weixin&rsquo;,成功的返回值中如果errMsg=“l(fā)ogin:ok” 代表成功,
微信小程序端會(huì)返回一個(gè)code字符串

如何實(shí)現(xiàn)uni-app微信小程序授權(quán)登錄

3.2. 案例代碼

      uni.login({
            provider: 'weixin',
            success: (res) => {
              console.log('res-login', res);
              this.code = res.code;
              console.log('code', res.code);
              if (res.errMsg == 'login:ok') {
              //TODO 獲取code 攜帶code參數(shù)調(diào)用后端接口}

四、獲取唯一標(biāo)識(shí)信息

4.1. 官網(wǎng)文檔

官網(wǎng)文檔
使用獲取到的code請(qǐng)求微信登錄接口,獲取 openid 和 session_key

如何實(shí)現(xiàn)uni-app微信小程序授權(quán)登錄

4.2. 接口簡(jiǎn)述

如何實(shí)現(xiàn)uni-app微信小程序授權(quán)登錄

請(qǐng)求方式:GET
APPID:小程序唯一標(biāo)識(shí),上面有獲取方式
SECRET:小程序唯一標(biāo)識(shí)的秘鑰,上面參考APPID獲取方式,就在他的下面
JSCODE:這個(gè)前端調(diào)用  uni.login獲取

GET https://api.weixin.qq.com/sns/jscode2session?appid=APPID&secret=SECRET&js_code=JSCODE&grant_type=authorization_code

如何實(shí)現(xiàn)uni-app微信小程序授權(quán)登錄

五、綁定用戶 實(shí)現(xiàn)登錄

獲取到微信用戶的唯一id后,就可以綁定至自己系統(tǒng)中的用戶,我的做法是在用戶表中加入weixinId字段,跳轉(zhuǎn)至自己的用戶綁定界面,如果用戶選擇綁定微信,則更新該行用戶數(shù)據(jù)的weixinId。下次用戶使用微信登錄時(shí),如果通過(guò)openId能夠查詢到一條用戶數(shù)據(jù),說(shuō)明已經(jīng)綁定,則登錄該用戶

5.1. 代碼案例(未封裝)

前端部分:

 /**
     *
     * 獲取用戶信息
     */
    getUserInfo() {
      // 展示加載框
      uni.showLoading({
        title: '加載中',
      });
      uni.getUserProfile({
        desc: '登錄后可同步數(shù)據(jù)',
        success: async (obj) => {
          console.log('obj', obj);
          // 調(diào)用 action ,請(qǐng)求登錄接口
          // await this.login(obj);
          uni.login({
            provider: 'weixin',
            success: (res) => {
              console.log('res-login', res);
              this.code = res.code;
              console.log('code', res.code);
              if (res.errMsg == 'login:ok') {
                uni
                  .request({
                    url:
                      'http://127.0.0.1:8080/wxh6/wx/user/' +
                      'wx55822xxxx75e422' +
                      '/login/',
                    data: {
                      code: this.code,
                    },
                  })
                  .then((res) => {
                  //獲取到 openid 和 session_k后,自己的邏輯
                    console.log('授權(quán)登錄', res[1].data);
                    console.log(res[1].data.openid);
                    console.log(res[1].data.session_key);
                    // DoSomeThing.................
                  });
                console.log('res', res);
              }
            },
          });
        },
        fail: () => {
          uni.showToast({
            title: '授權(quán)已取消',
            icon: 'error',
            mask: true,
          });
        },
        complete: () => {
          // 隱藏loading
          uni.hideLoading();
        },
      });
    },

后端部分

   @GetMapping("/login")
    public String login(@PathVariable String appid, String code) {
        if (StringUtils.isBlank(code)) {
            return "empty jscode";
        }

        final WxMaService wxService = WxMaConfiguration.getMaService(appid);

        try {
            WxMaJscode2SessionResult session = wxService.getUserService().getSessionInfo(code);
            this.logger.info(session.getSessionKey());
            this.logger.info(session.getOpenid());
            //TODO 可以增加自己的邏輯,關(guān)聯(lián)業(yè)務(wù)相關(guān)數(shù)據(jù)
            return JsonUtils.toJson(session);
        } catch (WxErrorException e) {
            this.logger.error(e.getMessage(), e);
            return e.toString();
        }
    }

5.2. 代碼案例(封裝)

  /**
     *
     * 獲取用戶信息
     */
    getUserInfo() {
      // 展示加載框
      uni.showLoading({
        title: '加載中',
      });
      uni.getUserProfile({
        desc: '登錄后可同步數(shù)據(jù)',
        success: async (obj) => {
          // this.userInfo = obj.userInfo;
          // 調(diào)用 action ,請(qǐng)求登錄接口
          uni.login({
            provider: 'weixin',
            success: async (res) => {
              this.code = res.code;
              // console.log('登錄獲取code', res.code);
              if (res.errMsg == 'login:ok') {
                await this.loginAuth({
                  userProfile: obj,
                  appid: 'wx558xxxxxxxxxxxxxxx2',
                  code: this.code,
                });
              }
            },
          });
        },
        fail: () => {
          uni.showToast({
            title: '授權(quán)已取消',
            icon: 'error',
            mask: true,
          });
        },
        complete: () => {
          // 隱藏loading
          uni.hideLoading();
        },
      });
    },
  },

user.js

/**
 * 微信用戶授權(quán)登錄,攜帶appid和code參數(shù),調(diào)用后端接口獲取Openid
 */
export function loginAuth(data) {
  return request({
    url: '/wx/user/' + data.appid + '/login/',
    data: {
      code: data.code,
    },
  });
}

vuex user模塊(user.js)

  // 微信用戶授權(quán)登錄,攜帶appid和code參數(shù),調(diào)用后端接口獲取Openid
    async loginAuth(context, data) {
      console.log('data', data);
      const userInfo = data.userProfile;
      const { content: res } = await loginAuth({
        appid: data.appid,
        code: data.code,
      });

      // 解析后端傳送過(guò)來(lái)的json對(duì)象
      const userAuthInfo = JSON.parse(res);
      const openid = userAuthInfo.openid;
      // console.log('sessionKey', userAuthInfo.sessionKey);
      console.log('openid', openid);

      // 保存到vuex中,通過(guò)commit
      this.commit('user/setOpenid', userAuthInfo.openid);
      this.commit('user/setUserInfo', JSON.parse(userInfo.rawData));
    },

如何實(shí)現(xiàn)uni-app微信小程序授權(quán)登錄

如何實(shí)現(xiàn)uni-app微信小程序授權(quán)登錄

以上是“如何實(shí)現(xiàn)uni-app微信小程序授權(quán)登錄”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI