使用Google Auth Signin的Vuejs全球功能

时间:2017-03-31 00:06:50

标签: javascript vue.js vuejs2 google-authentication

我正在使用vuejs 2,我在使用Google身份验证时遇到问题。

我成功设置并使用vue:

进行了注销和用户个人资料功能
export default {

  data() {
    return {
      user: null
    };
  },

  methods: {
    getUserProfile() {
          const profile = gapi.auth2.currentUser.get().getBasicProfile();

          console.log(profile.getIdToken());
      },

      signOut() {
          const auth2 = gapi.auth2.getAuthInstance();

          auth2.signOut().then(function () {
              console.log('user signed out');
          });
      }
  },
};

我的主要问题是来自

onSignIn(googleUser)功能

<div class="g-signin2" data-onsuccess="onSignIn"></div>

data-onsuccess="onSignIn"正在查找vue实例之外的js函数。 我尝试在我的HTML文件中添加onSignIn(googleUser)函数,如:

<script>
    function onSignIn(googleUser) {
        const auth2 = gapi.auth2.init();

        if (auth2.isSignedIn.get()) {
            const profile = auth2.currentUser.get().getBasicProfile();

            console.log(profile.getName());
            console.log(googleUser.getAuthResponse().id_token);
            console.log(googleUser.getAuthResponse().uid);
            console.log(auth2.currentUser.get().getId());
        }
    }
</script>

这可以按预期工作,但我想知道是否可以在我的vue文件中添加它而不是原生的javascript方式,因为在这个函数中,我将调用其他vue方法。

或者有没有办法在vue中添加onSignIn(googleUser)功能,然后在Google Auth完成时调用它?

1 个答案:

答案 0 :(得分:11)

此处的解决方案是使用gapi.signin2.render呈现组件mounted挂钩内的登录按钮

<template>
  <div id="google-signin-btn"></div>
</template>

<script>
export default {
  methods: {
    onSignIn (user) {
      // do stuff, for example
      const profile = user.getBasicProfile()
    }
  },
  mounted() {
    gapi.signin2.render('google-signin-btn', { // this is the button "id"
      onsuccess: this.onSignIn // note, no "()" here
    })
  }
}
</script>

请参阅https://developers.google.com/identity/sign-in/web/reference#gapisignin2renderid-options