为Google登录调用data-onsuccess方法

时间:2015-07-30 20:18:13

标签: javascript google-signin

我正在尝试将Google Sign In集成到我的网络应用中。

我的页面上有Google按钮:

ModalDialogue.cshtml:

<a class="google g-signin2" data-onsuccess="onSignIn">Sign up with Google+</a>

我正试图在我的js中触发该方法:

ModalDialogue.js:

      function onSignIn(googleUser) {
        var profile = googleUser.getBasicProfile();
        console.log('ID: ' + profile.getId()); // Do not send to your backend! Use an ID token instead.
        console.log('Name: ' + profile.getName());
        console.log('Image URL: ' + profile.getImageUrl());
        console.log('Email: ' + profile.getEmail());
      }

我知道

a] JavaScript在页面范围内,因为我的其他功能 - 用于打开和关闭对话 - 可以正常工作。

b]该按钮正在与Google通信,因为点击该按钮会打开“使用Google登录”对话框 - 然后完成后 - 将按钮更改为“登录”。

如何触发onSignIn方法?或者至少如何确定是否触发了成功?

5 个答案:

答案 0 :(得分:3)

喔。我的错。我没有注意到我把方法包裹在一个闭包中。需要全球化。

答案 1 :(得分:3)

对于将来访问此页面的人,我必须将功能定义移到按钮标记上方。似乎它不应该是重要的,因为data-onsuccess只是一个字符串。不幸的是,它没有抛出任何错误信息。

答案 2 :(得分:0)

<html lang="en">
  <head>
    <meta name="google-signin-scope" content="profile email">
    <meta name="google-signin-client_id" content="YOUR_CLIENT_ID.apps.googleusercontent.com">
    <script src="https://apis.google.com/js/platform.js" async defer></script>
  </head>
  <body>
    <div class="g-signin2" data-onsuccess="onSignIn" data-theme="dark"></div>
    <script>
      function onSignIn(googleUser) {
        // Useful data for your client-side scripts:
        var profile = googleUser.getBasicProfile();
        console.log("ID: " + profile.getId()); // Don't send this directly to your server!
        console.log('Full Name: ' + profile.getName());
        console.log('Given Name: ' + profile.getGivenName());
        console.log('Family Name: ' + profile.getFamilyName());
        console.log("Image URL: " + profile.getImageUrl());
        console.log("Email: " + profile.getEmail());

        // The ID token you need to pass to your backend:
        var id_token = googleUser.getAuthResponse().id_token;
        console.log("ID Token: " + id_token);
      }
    </script>
  </body>
</html>

for for infofor info

答案 3 :(得分:0)

在脚本标签中定义onSignIn函数,这将使其全局可用。

<script>
          function onSignIn(googleUser) {
            console.log("I am clicked");
            var profile = googleUser.getBasicProfile();
            console.log("ID: " + profile.getId());
            console.log("Name: " + profile.getName());
            console.log("Image URL: " + profile.getImageUrl());
            console.log("Email: " + profile.getEmail());
          }
</script>

要检查您的函数是否全局可用,请从控制台调用window.onSignIn()或onSignIn()。如果它是全局的,则应该可以调用onSignIn。

可以将script标签放在body标签的底部(已通过React js测试),

<body>
....
<script>
...
</script></body>

或者可以将其放置在具有async或defer属性的头部。

这将发挥其神奇作用,

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

祝你好运。

答案 4 :(得分:-1)

在浏览器中启用第三方Cookie