Facebook Javascript SDK:在我的帖子中标记另一个用户?

发布于 2024-10-20 18:01:00 字数 441 浏览 1 评论 0原文

我们使用 Facebook Javascript SDK 来允许用户将内容发布到他们的墙上。在发布的消息中,是否可以标记另一个用户,类似于在 facebook.com 上键入帖子时的方式? (使用@person之类的东西)

我们正在使用:

FB.api('/me/feed', 'post', { message: 'This post came from a test. @someuser'}, function(response) {
      if (!response || response.error) {
        alert('Error occured');
      } else {
        alert('Post ID: ' + response.id);
      }
    });

最终结果将是一个标记@someuser用户的帖子。

We are using the Facebook Javascript SDK to allow users to post content to their wall. In the message that gets posted, is it possible to tag another user, similar to how you can when typing a post on facebook.com? (using something like @person)

We are using:

FB.api('/me/feed', 'post', { message: 'This post came from a test. @someuser'}, function(response) {
      if (!response || response.error) {
        alert('Error occured');
      } else {
        alert('Post ID: ' + response.id);
      }
    });

The end result would then be a post that tagged the @someuser user.

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

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

发布评论

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

评论(1

心奴独伤 2024-10-27 18:01:00

Facebook API 目前不支持这样的用户标记。该功能仅限于实际站点本身。

The Facebook API doesn't currently support tagging of users like this. That functionality is limited to the actual site itself.

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