通过API更新Facebook Page Wall

时间:2011-04-18 02:04:21

标签: ruby-on-rails facebook

我很难将内容发布到Facebook页面墙,并且还找到有关如何完成此操作的最新文档(我发现在其他问题中链接到的Facebook页面要么丢失要么丢失了)。

我正在编写的应用程序会定期将日程安排内容从ruby on rails应用程序通过cron job / rake任务推送到粉丝页面墙。我希望有人可以获得有关如何将内容推送到Facebook页面墙的最新指南或说明。

任何帮助都将不胜感激。

3 个答案:

答案 0 :(得分:3)

答案 1 :(得分:1)

请看一下我就此问题发表的一篇旧帖子。

Easy way of posting on Facebook page (not a profile but a fanpage)

希望它有所帮助!

答案 2 :(得分:0)

考拉摇滚我的世界!

假设您已经要求获得写入权限(首先阅读此内容:http://developers.facebook.com/docs/authentication/ [请注意'范围'参数]请参阅此权限:http://developers.facebook.com/docs/authentication/permissions/ [您需要请求发布流权限,然后阅读https://github.com/arsduo/koala/wiki/OAuth),并拥有一个有效的oauth令牌,其简单如下:

@graph.put_wall_post("hey, i'm learning koala")

https://github.com/arsduo/koala/wiki/Graph-API

另外,请阅读关于ROR的考拉的https://github.com/arsduo/koala/wiki/Koala-on-Rails

请参阅oauth示例:http://oauth.twoalex.com/(源代码:https://github.com/arsduo/oauth_playground