vue怎么调用谷歌授权登录获取用户通讯录

发布时间:2022-07-15 10:27:07 作者:iii
来源:亿速云 阅读:186

这篇文章主要讲解了“vue怎么调用谷歌授权登录获取用户通讯录”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“vue怎么调用谷歌授权登录获取用户通讯录”吧!

调用谷歌授权,获取用户通讯录信息

业务背景

vue怎么调用谷歌授权登录获取用户通讯录

vue怎么调用谷歌授权登录获取用户通讯录

vue怎么调用谷歌授权登录获取用户通讯录

vue怎么调用谷歌授权登录获取用户通讯录

   // 初始化谷歌授权登录
    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) {
        // 如果已经登录,就直接弹出窗口
        this.listConnectionNames()
      } else {
        // 未登录就调用出登录授权
        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() {
     // 谷歌登录授权初始化
        gapi.load('client:auth3', that.initClient)
     },

感谢各位的阅读,以上就是“vue怎么调用谷歌授权登录获取用户通讯录”的内容了,经过本文的学习后,相信大家对vue怎么调用谷歌授权登录获取用户通讯录这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是亿速云,小编将为大家推送更多相关知识点的文章,欢迎关注!

推荐阅读:
  1. 微信-网页授权获取用户openid
  2. VUE:vuex 用户登录信息的数据写入与获取方式

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

vue

上一篇:怎么使用Vue+canvas实现视频截图功能

下一篇:vue与react是什么框架

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》