我遇到http://developers.facebook.com/docs/reference/api/post/問題。即,稱爲「with_tags」的選項。Facebook Graph 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」標籤。我在「與」部分使用的用戶位於我的好友列表中,同時也是該應用的開發者。 謝謝。
迴應是100%有效。沒有錯誤消息。 – OutWard 2012-07-23 14:32:44
我已經更新了我的答案,並在facebook開發者博客上發佈了一條新消息 – TommyBs 2012-08-22 06:34:29