如何使用 facebooker 插件将 facebook 会话详细信息发送到 Rails 应用程序
我无法使用 fbconnect 将 iPhone 应用程序与我的 Rails 应用程序集成,因为 facebooker 插件无法识别我随 iPhone 的请求一起发送的会话详细信息。 iPhone 的请求如下:
[request setURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://localhost:3000/i_phone/get-user-info?fb_sig_session_key=%@",session.sessionKey]]];
在 Rails 应用程序中,我使用
set_facebook_session
facebooker 插件中的
方法。有人可以告诉我我在这里做错了什么以及正确的方法是什么。
我请求 localhost,因为我的 Web 应用程序也托管在本地同一台计算机上。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该查看由 github 上的 ckhsponge 整理的 ConnectiProxy 演示。他发布了 Rails 和 iPhone 应用程序示例,这些应用程序协同工作来处理 iPhone 和 Rails 之间的安全 Facebook Connect 身份验证。
轨道应用程序
http://github.com/ckhsponge/connectiproxy
iPhone 应用程序
http://github.com/ckhsponge/facebook-iphone-sdk
You should check out the ConnectiProxy demo put together by ckhsponge on github. He's posted sample rails and iphone apps that work together to handle secure facebook connect authentication between iphone and rails.
Rails app
http://github.com/ckhsponge/connectiproxy
iPhone app
http://github.com/ckhsponge/facebook-iphone-sdk