溫馨提示×

溫馨提示×

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

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

vue怎么調(diào)用谷歌授權(quán)登錄獲取用戶通訊錄

發(fā)布時間:2022-07-15 10:27:07 來源:億速云 閱讀:174 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要講解了“vue怎么調(diào)用谷歌授權(quán)登錄獲取用戶通訊錄”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“vue怎么調(diào)用谷歌授權(quán)登錄獲取用戶通訊錄”吧!

調(diào)用谷歌授權(quán),獲取用戶通訊錄信息

業(yè)務(wù)背景

  • 業(yè)務(wù)端要求,用戶本人填寫信息,推薦到朋友,要求可以導(dǎo)出用戶谷歌郵箱的通訊錄,讓用戶選擇,并且回顯到頁面 ##步驟

  • 在谷歌開發(fā)者平臺 , 創(chuàng)建一個項目,我的理解是,我們的頁面就是這個項目,要由我們的項目,對谷歌發(fā)起授權(quán)請求,就類似微信小程序,向官方發(fā)起授權(quán),請求昵稱和頭像的這個場景,所以,后面我們的這個項目也要通過谷歌的審核。

  • 來到api服務(wù)

vue怎么調(diào)用谷歌授權(quán)登錄獲取用戶通訊錄

  • 這時候就到了我們這個項目的管理后臺

  • 然后要創(chuàng)建一個用戶憑據(jù),拿到我們項目的id和key

vue怎么調(diào)用谷歌授權(quán)登錄獲取用戶通訊錄

  • 配置下面的域名,也就是讓谷歌知道,用戶從哪個域名發(fā)起請求事合理的,可以用本地localhost進行測試。不能用局域網(wǎng)IP

  • 然后在API庫中,選擇我們要用的API,我的需求是獲取通訊錄,所以我啟用了people API

  • 在API庫里,都會有用法和說明,我是自己去他的git上拉取的,看了下代碼流程,然后自己改動,git上的代碼很簡潔

  • OAuth 同意屏幕 就是我們的應(yīng)用在授權(quán)時,會跳出如下的界面

vue怎么調(diào)用谷歌授權(quán)登錄獲取用戶通訊錄

  • 我的理解就是這個屏幕就是同意屏幕,如果我們的應(yīng)用沒通過谷歌的驗證,他就會提示我們的應(yīng)用不安全。

  • 要想通過,這邊有流程官方介紹

vue怎么調(diào)用谷歌授權(quán)登錄獲取用戶通訊錄

  • 我開發(fā)的時候,只是發(fā)布到正式了,沒通過就是了。在開發(fā)環(huán)境沒問題。

  • 然后就能拿到數(shù)據(jù)了。 全部的代碼

   // 初始化谷歌授權(quán)登錄
    initClient() {
      // Client ID and API key from the Developer Console
      let CLIENT_ID =
          '你申請的ID',
        API_KEY = '你申請的密碼',
        // Array of API discovery doc URLs for APIs used by the quickstart
        DISCOVERY_DOCS = [
          'https://www.googleapis.com/discovery/v1/apis/people/v1/rest',
        ],
        // Authorization scopes required by the API; multiple scopes can be
        // included, separated by spaces.
        SCOPES = 'https://www.googleapis.com/auth/contacts.readonly',
        authorizeButton = document.getElementById('authorize_button'),
        that = this
      gapi.client
        .init({
          // apiKey: API_KEY,
          clientId: CLIENT_ID,
          discoveryDocs: DISCOVERY_DOCS,
          scope: SCOPES,
        })
        .then(
          function () {
            console.log('谷歌登錄初始化成功')
            // Listen for sign-in state changes.
            gapi.auth3
              .getAuthInstance()
              .isSignedIn.listen(that.updateSigninStatus)

            // Handle the initial sign-in state.
            // that.updateSigninStatus(
            //   gapi.auth3.getAuthInstance().isSignedIn.get()
            // )
            authorizeButton.onclick = that.handleAuthClick
          },
          function (error) {
            console.log(error)
            // appendPre(JSON.stringify(error, null, 2))
          }
        )
    },
    /**
     *  Called when the signed in status changes, to update the UI
     *  appropriately. After a sign-in, the API is called.
     */
    updateSigninStatus(isSignedIn) {
      // 是否登錄
      if (isSignedIn) {
        console.log('已登錄')
        this.listConnectionNames()
      } else {
        console.log('未登錄')
      }
    },
    /**
     *  Sign in the user upon button click.
     */
    handleAuthClick() {
      // 是否登錄
      let flag = gapi.auth3.getAuthInstance().isSignedIn.get()
      if (flag) {
        // 如果已經(jīng)登錄,就直接彈出窗口
        this.listConnectionNames()
      } else {
        // 未登錄就調(diào)用出登錄授權(quán)
        gapi.auth3.getAuthInstance().signIn()
      }
    },
    /**
     *  Sign out the user upon button click.
     */
    handleSignoutClick(event) {
      gapi.auth3.getAuthInstance().signOut()
    },
    listConnectionNames() {
      let peopleMsg = [],
        that = this
      gapi.client.people.people.connections
        .list({
          resourceName: 'people/me',
          pageSize: 100,
          personFields: 'names,emailAddresses',
        })
        .then(function (response) {
          var connections = response.result.connections

          if (connections.length > 0) {
            for (let i = 0; i < connections.length; i++) {
              var person = connections[i]
              if (person.names && person.emailAddresses) {
                let obj = {
                  name: person.names[0].displayName,
                  email: person.emailAddresses[0].value,
                  id: i,
                }
                peopleMsg.push(obj)
              }
            }
          } else {
            that.$message({
              message: 'No connections found.',
              type: 'warning',
            })
          }

          that.peopleMsg = peopleMsg

          that.popDialog(peopleMsg)
        })
        .catch((err) => {
          console.log(err)
        })
    },
    
    
    // 在mounted的時候初始化一下窗口
    
     mounted() {
     // 谷歌登錄授權(quán)初始化
        gapi.load('client:auth3', that.initClient)
     },

感謝各位的閱讀,以上就是“vue怎么調(diào)用谷歌授權(quán)登錄獲取用戶通訊錄”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對vue怎么調(diào)用谷歌授權(quán)登錄獲取用戶通訊錄這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!

向AI問一下細節(jié)

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

vue
AI