Facebook Javascript SDK:在我的帖子中标记另一个用户?
我们使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Facebook API 目前不支持这样的用户标记。该功能仅限于实际站点本身。
The Facebook API doesn't currently support tagging of users like this. That functionality is limited to the actual site itself.