Omniauth Google 帐户 UID?
我正在使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它给你的实际上是你的用户的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"]
.