我遇到了http://developers.facebook.com/docs/reference/api/post/的问题。即,名为“with_tags”的选项。
options = {
"message": "Test123",
"with_tags": {
"data":[
{"id": 100001686722916, "name": "Aret Aret"}
]
}
};
FB.api('/me/feed', 'post', options, function(response) {
if (!response || response.error) {
alert('Error occured');
console.log(response);
} else {
console.log(response);
}
});
结果,我只收到一条消息“Test123”,但我的帖子中没有“with”标签。我在“with”部分使用的用户在我的朋友列表中,也是该应用程序的开发人员。谢谢。