如何在 Ruby on Rails 中将 Facebook 新的 Graph Api 与 Authlogic 集成?
编辑:我现在建议任何 Ruby 应用程序使用 omniauth
gem 来获取 access_token
等,并使用 koala
Facebook Graph API 的代码> gem。
我开始了一个使用 Authlogic 系统进行授权的新项目。
我现在想知道如何将 Facebook oAuth 会话与我的 Authlogic 会话连接起来!
首先我想使用 Authlogic-oAuth Gems/Plugins,我想使用的只是
- http:// /github.com/intridea/oauth2
- 和有趣的 http://github.com/nsanta/fbgraph
- 并将它们全部与 Authlogic 相关联。
我尝试将 Authlogic 与 authlogic-connect 扩展一起使用,但它没有满足我的需求。我认为上述三颗令人惊叹的宝石加在一起将使事情按我想要的质量完成。
提前致谢。
Edit: What I recommend now with any Ruby application to use omniauth
gem to get access_token
, etc. and to use koala
gem for Facebook Graph API.
I've began with a new project using Authlogic system for Authorization.
And I'm now wondering how could I connect Facebook oAuth sessions with my Authlogic session!
First of all I want to use and Authlogic-oAuth Gems/Plugins, I what I want to use are just
- http://github.com/intridea/oauth2
- and the interesting http://github.com/nsanta/fbgraph
- and associate them all with Authlogic.
I tried using Authlogic with authlogic-connect extension, but It didnt fill up my needs. And I think the three of the amazing gems above togother will make things done in quality and as I want.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我昨天刚刚发布了一个 gem,为 Authlogic 添加了 OAuth2 支持。您可以在这里找到它:http://github.com/andyhite/authlogic_oauth2
I just released a gem yesterday that adds OAuth2 support to Authlogic. You can find it here: http://github.com/andyhite/authlogic_oauth2
我使用 koala 作为 FB 图形 api,并通过 authlogic 和一些快速拼凑的 gem authlogic_facebook_koala 来桥接它,它很粗糙,但它弥合了通过 JS SDK 登录和 authlogic 之间的差距。
I used koala for the FB graph api and bridged that with authlogic with a bit of a rapidly thrown together gem authlogic_facebook_koala it's rough and ready but it bridges the gap between login via the JS SDK and authlogic.
如果您可以使用 Javascript SDK,有什么线索吗?
看来 Facebooker 不再需要了
any clues if you can use the Javascript SDK?
it seems that Facebooker is no longer needed