为 Google 登录调用 data-onsuccess 方法
Posted
技术标签:
【中文标题】为 Google 登录调用 data-onsuccess 方法【英文标题】:calling data-onsuccess method for Google sign-in 【发布时间】:2015-10-22 08:52:42 【问题描述】:我正在尝试将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 方法?或者至少我如何确定是否触发了 onsuccess?
【问题讨论】:
您是否在a
标记内为onSignIn
函数传递了data-onsuccess
函数中的参数?
似乎它应该自动发生。可能包括有关您如何实施集成以及您尝试登录时实际发生的情况的其他详细信息。
这和 Chrome 扩展有什么关系?
我正在实现这个:developers.google.com/identity/sign-in/web/sign-in 我有一个客户端 ID,但我只是想弄清楚如何触发 data-onsuccess。
我遇到了完全相同的问题。 onSuccess 函数是全局范围的。登录似乎很顺利,但从未调用过 onSuccess 并且没有错误消息。
【参考方案1】:
哦。我的错。我没有注意到我将方法包裹在一个闭包中。需要全球化。
【讨论】:
【参考方案2】:对于以后来这个页面的人,我不得不把函数定义移到按钮标签上面。似乎没关系,因为 data-onsuccess 只是一个字符串。不幸的是,它没有抛出任何错误消息。
【讨论】:
【参考方案3】:<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
【讨论】:
你能解释一下你在这里做了什么吗?那会很有帮助【参考方案4】:在 script 标签中定义 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。
脚本标签可以放在body标签的底部(用React js测试),
<body>
....
<script>
...
</script></body>
或者,它可以用 async 或 defer 属性放在 head 内。
这将发挥它的魔力,
<div className="g-signin2" data-onsuccess="onSignIn"></div>
祝你好运。
【讨论】:
【参考方案5】:在您的浏览器中启用第三方 cookie
【讨论】:
以上是关于为 Google 登录调用 data-onsuccess 方法的主要内容,如果未能解决你的问题,请参考以下文章
Google Plus 跨平台单点登录:onConnected 从未在全新安装中调用
使用服务帐户通过 OAuth 2.0 调用 v3 Google 日历 API 时出现“需要登录”401 未经授权的消息