创建自己的“类似 OpenID 的系统”提供者
我知道 Facebook 使用他们自己的类似 OpenID 的系统,称为“Facebook connect”,您可以使用它来验证您网站上的用户以及其他功能。
就我而言,我有多个 Ruby on Rails 应用程序:
- ...
- 我
- users.example.comprofiles.example.com photos.example.com
- 想
使用“users.example.com”作为网络服务 允许用户以与“Facebook connect”或 OpenID 相同的方式对我的所有其他应用程序进行身份验证。简而言之,'users.example.com' 必须作为“类似 OpenID 的系统”为我在“example.com”中的应用程序工作。
谁能给我一些有用资源的提示和链接?
PS:由于我是这方面的新手,我不知道我说的话是否有道理。所以有人可以帮助我理解(如果我错了)......
I know that Facebook use their own OpenID-like system called "Facebook connect", which you can use to authenticate users on your site, among other features.
In my case I have multiple Ruby on Rails applications:
- users.example.com
- profiles.example.com
- photos.example.com
- ...
I would like to use 'users.example.com' as a web service that allows users to authenticate to all my other applications the same way as works "Facebook connect" or OpenID. In few words, 'users.example.com' must works as a "OpenID-like system" for my applications in 'example.com'.
Can anyone give me tips and links to some useful resources?
P.S.: since I am a newbie in this matter, I do not know if I'm saying things that make sense. So someone could help me to understand (if I am wrong) ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Facebook 正在使用 OAuth 2.0,现在它比 openid 更流行。您可以查看如何在 railcasts 上实现它或搜索“oauth Rails”,您将获得足够的信息。
在我看来,这就是您正在寻找的东西。
Facebook is using OAuth 2.0 and this is now more popular than openid. You can see how to implement it on railcasts or search for "oauth rails" and you will geht enough info about it.
In my opinion this is the thing you are looking for.