Open Graph beta:如何在操作中标记朋友?

发布于 2024-12-06 11:40:22 字数 173 浏览 0 评论 0原文

我已成功使用 Graph API 发布活动。如何在操作中标记好友?

我可以看到您可以在操作仪表板中添加标签,但除此之外,它没有指定如何标记朋友。

I've managed to publish an activity using the Graph API. How can you tag friends in a action?

I can see you can add tags in the action dashboard, but other than that it's not specified how to tag friends.

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

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

发布评论

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

评论(1

薆情海 2024-12-13 11:40:22

有一个简化的示例 https://developers.facebook.com/docs/beta /opengraph/actions/#tagging

Actions can be tagged with places and people by specifying the place and tags optional parameters.

示例调用将是一个 POST

https://graph.facebook.com/me/{APP_NAME}:{ACTION NAME}?
  {YOUR OTHER ACTION PARAMETERS HERE}
  &place={A PLACE ID}
  &tags={COMMA SEPARATED LIST OF UIDS}&access_token=YOUR_ACCESS_TOKEN

它将在操作中标记用户,并在某个位置标记它们

There's a simplified example at https://developers.facebook.com/docs/beta/opengraph/actions/#tagging

Actions can be tagged with places and people by specifying the place and tags optional parameters.

A sample call would be a POST to

https://graph.facebook.com/me/{APP_NAME}:{ACTION NAME}?
  {YOUR OTHER ACTION PARAMETERS HERE}
  &place={A PLACE ID}
  &tags={COMMA SEPARATED LIST OF UIDS}&access_token=YOUR_ACCESS_TOKEN

That would tag the users in the action, and also tag them at a place

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