使用 Ruby 在 Open Graph API 中标记用户
我发现了一些关于发布到您的提要的选项的非常稀疏的文档。
我正在尝试发布到“/me/feed”,然后在该帖子中包含一个用户。我正在尝试重新创建您现在可以在 Facebook 状态框中执行 @username 的方式,但改为从 API 执行。
使用 Ruby OAuth2 lib 我执行以下操作。
OAuth2::AccessToken.new(FBOAuthClient,fb_token).post("/me/feed", :message => status)
这很棒,但我想做一些类似的事情:
OAuth2::AccessToken.new(FBOAuthClient,fb_token).post("/me/feed", :message => status, :to => FUID)
这可能吗?
或者我可以直接用 JSON 发布吗?
谢谢,
肯特
I have found some really sparse documentation about the options for posting to your feed.
I am trying to post to "/me/feed" and then include a user in that post. I am trying to re-create the way that you can now do @username in the Facebook Status box, but from the API instead.
Using the Ruby OAuth2 lib I to do the following.
OAuth2::AccessToken.new(FBOAuthClient,fb_token).post("/me/feed", :message => status)
Which is great, but I want to do something like:
OAuth2::AccessToken.new(FBOAuthClient,fb_token).post("/me/feed", :message => status, :to => FUID)
Is this possible?
Or can, I post directly with JSON?
Thanks,
Kent
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
似乎仍然有一个未解决的错误阻止了这一点。 http://bugs.developers.facebook.net/show_bug.cgi?id=12074
there still seems to be an open bug preventing this. http://bugs.developers.facebook.net/show_bug.cgi?id=12074