我已在fb中创建了一个应用,并在应用设置(状态和评价)的项目中添加可标记的朋友。并使用此js代码进行标记但不适合我。请帮我解决这个问题。基本上我想在创建帖子时标记朋友。
FB.ui({
method: 'stream.publish',
name: 'aaaa',
link: 'http://google.com',
message: 'aaaaaaa',
message_tags: [{
"id": 655423781,
"name": "mobi"
}],
caption: "like this, you tag friends",
description: 'post description'
},
function(response) {
if (response && response.post_id) {
alert(response.post_id);
} else {
alert(0);
}
});