首頁 > 軟體

vue呼叫谷歌授權登入獲取使用者通訊錄的實現範例

2022-07-14 18:00:11

呼叫谷歌授權,獲取使用者通訊錄資訊

業務背景

  • 業務端要求,使用者本人填寫資訊,推薦到朋友,要求可以匯出使用者谷歌郵箱的通訊錄,讓使用者選擇,並且回顯到頁面 ##步驟
  • 在谷歌開發者平臺 , 建立一個專案,我的理解是,我們的頁面就是這個專案,要由我們的專案,對谷歌發起授權請求,就類似微信小程式,向官方發起授權,請求暱稱和頭像的這個場景,所以,後面我們的這個專案也要通過谷歌的稽核。
  • 來到api服務

  • 這時候就到了我們這個專案的管理後臺
  • 然後要建立一個使用者憑據,拿到我們專案的id和key

  • 設定下面的域名,也就是讓谷歌知道,使用者從哪個域名發起請求事合理的,可以用本地localhost進行測試。不能用區域網IP
  • 然後在API庫中,選擇我們要用的API,我的需求是獲取通訊錄,所以我啟用了people API
  • 在API庫裡,都會有用法和說明,我是自己去他的git上拉取的,看了下程式碼流程,然後自己改動,git上的程式碼很簡潔
  • OAuth 同意螢幕 就是我們的應用在授權時,會跳出如下的介面

  • 我的理解就是這個螢幕就是同意螢幕,如果我們的應用沒通過谷歌的驗證,他就會提示我們的應用不安全。
  • 要想通過,這邊有流程官方介紹

  • 我開發的時候,只是釋出到正式了,沒通過就是了。在開發環境沒問題。
  • 然後就能拿到資料了。 全部的程式碼
   // 初始化谷歌授權登入
    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.auth2
              .getAuthInstance()
              .isSignedIn.listen(that.updateSigninStatus)

            // Handle the initial sign-in state.
            // that.updateSigninStatus(
            //   gapi.auth2.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.auth2.getAuthInstance().isSignedIn.get()
      if (flag) {
        // 如果已經登入,就直接彈出視窗
        this.listConnectionNames()
      } else {
        // 未登入就呼叫出登入授權
        gapi.auth2.getAuthInstance().signIn()
      }
    },
    /**
     *  Sign out the user upon button click.
     */
    handleSignoutClick(event) {
      gapi.auth2.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() {
     // 谷歌登入授權初始化
        gapi.load('client:auth2', that.initClient)
     },

到此這篇關於vue呼叫谷歌授權登入獲取使用者通訊錄的實現範例的文章就介紹到這了,更多相關vue谷歌授權登入獲取通訊錄內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com