Omniauth Google 帐户 UID?

发布于 2024-12-11 13:21:14 字数 360 浏览 0 评论 0原文

我正在使用omniauth gem,这样人们就可以使用他们的谷歌帐户登录我的网站。我让它与 facebook 和 twitter 一起使用,但对于 google 帐户,我无法在回调中正确提取 UID。

对于 Facebook 和我可以使用 Twitter:

@user.uid = auth["uid"]

但这给了我:

https://www.google.com/accounts/o8/id?id=gXtgsdgirhGugasuzdg-asdhuzigaoWV1kgo

当我尝试使用谷歌帐户时。我也不知道如何拍照。

谢谢! 亚历克斯

I'm using the omniauth gem so people can log in to my site with their google accounts. I have it working with facebook and twitter but I for google accounts I can't extract the UID properly on the callback.

For Facebook & Twitter I can use:

@user.uid = auth["uid"]

But this gives me:

https://www.google.com/accounts/o8/id?id=gXtgsdgirhGugasuzdg-asdhuzigaoWV1kgo

When I try to use a google account. I also can't work out how to get a photo.

Thanks!
Alex

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

极致的悲 2024-12-18 13:21:14

它给你的实际上是你的用户的UID。这是他唯一的 OpenID URL 来识别他。

Twitter 和 Facebook 使用 OAuth,Google 使用 OpenID。如果您需要用户的电子邮件地址,它将位于 auth["user_info"]["email"] 中。

What it gives you is in fact the UID for your user. It is his unique OpenID URL that he is identified by.

Twitter and Facebook use OAuth, Google uses OpenID. If you want the user's e-mail address, it will be in auth["user_info"]["email"].

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文