Rails 3.1 上的 Facebook Canvas 应用程序
我正在尝试创建一个 Facebook 画布应用程序,允许用户编写自定义墙贴并标记一些朋友。我熟悉独立的 Rails 应用程序,但我很难掌握 API 交互。
我遇到了一些 gems(Facebooker2、Koala 和 fb_graph)和 Heroku 集成,它们提供了一种更简单的方法来使用 GraphAPI,但我无法找到有关如何将它们与 Rails 应用程序集成的更新示例划痕。到目前为止,我找到的唯一一个就是这个来自 fb_graph 的示例。
看来这种类型的应用程序在 Facebook 上很常见,所以我希望在社区上找到更多信息。有没有更好的方法来开始使用 Rails 为 Facebook 进行开发,或者我应该选择其中一个并坚持使用它直到掌握概念?
I'm trying to create a Facebook canvas app that allow users to write a custom Wall post and tag some friends. I'm familiar with stand alone rails apps, but I'm having a hard time grasping API interactions.
I've came across with a few gems (Facebooker2, Koala and fb_graph) and the Heroku integration that provide a easier way to use the GraphAPI, but I wasn't able to find updated examples on how to integrate them with a rails app from scratch. So far, the only one that I've found was this sample from fb_graph.
It seems that this type of application is pretty common of Facebook, so I was expecting to find more info on the community. Is there a better way to start developing for Facebook using Rails or should I just pick one of those gems and stick with it until I grasp the concepts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我能够使用 fb_graph 示例创建 Facebook 画布应用程序。也许有更好的解决方案来处理画布内的 Facebook 授权,但该示例是一个很好的开始。这是我的项目,Facebook 内的音乐测验: https://github.com/luizbranco/MusicQuiz
I was able to create an Facebook canvas app using the fb_graph sample. Probably there are better solutions to handle Facebook authorization inside canvas, but the sample is a great start. Here is my project, a Music Quiz inside Facebook: https://github.com/luizbranco/MusicQuiz
我使用 Koala 从头开始构建了我的第一个 Facebook 应用程序。 他们在 Github 上的 wiki 非常棒,一切都解释得很好。
I built my first Facebook app from scratch using Koala. Their wiki on Github is absolutely fantastic and everything is well explained.