使用 Ruby 在 Open Graph API 中标记用户

发布于 2024-09-04 07:38:56 字数 504 浏览 8 评论 0原文

我发现了一些关于发布到您的提要的选项的非常稀疏的文档。

我正在尝试发布到“/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 技术交流群。

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

发布评论

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

评论(1

甜嗑 2024-09-11 07:38:56

似乎仍然有一个未解决的错误阻止了这一点。 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

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