我是否缺少图形 api 的工作原理

发布于 2024-09-25 15:08:20 字数 842 浏览 2 评论 0原文

我正在使用 this gem,它只是 facebook graph API 的包装器。我试图在登录用户的 Facebook 墙上发布一些内容。这个任务看起来很简单,但我遇到了这些问题

graph = HyperGraph.new("some token").get('me')
=> {:last_name=>"Jones", :updated_time=>Fri Aug 06 22:27:03 -0400 2010, :email=>"[email protected]", :locale=>"en_US", :link=>"http://www.facebook.com/matt.jones", :verified=>true, :first_name=>"Matt", :timezone=>-4, :name=>"Matt Jones", :birthday=>"04/22/1985", :id=>503888340}
graph.object('503888340').post(:comments, :message => 'durian is disgustingly delicious')

FacebookError: OAuthException - (#100) Invalid fbid.

如何在我的墙上发布消息

I am using this gem, which is just a wrapper for the facebook graph API. I trying trying to post something to the logged in users facebook wall. This task seems easy enough but i am having these problems

graph = HyperGraph.new("some token").get('me')
=> {:last_name=>"Jones", :updated_time=>Fri Aug 06 22:27:03 -0400 2010, :email=>"[email protected]", :locale=>"en_US", :link=>"http://www.facebook.com/matt.jones", :verified=>true, :first_name=>"Matt", :timezone=>-4, :name=>"Matt Jones", :birthday=>"04/22/1985", :id=>503888340}
graph.object('503888340').post(:comments, :message => 'durian is disgustingly delicious')

FacebookError: OAuthException - (#100) Invalid fbid.

How do i post a message to my wall

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

荒人说梦 2024-10-02 15:08:20

尝试用 :feed 替换 :comments

try replacing :comments with :feed

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文