以下のコードを使用して Open グラフで Post アクションを使用していますが、「[Object Object]」というエラー メッセージが表示されます。
何が問題でしょうか???、この URL https://developers.facebook.com/docs/opengraph/tutorial/#publishからアクションを公開するためのすべての段階的なガイダンスに従いました
<script type="text/javascript">
function postArticle() {
FB.api(
'/me/ICONSolutions-test:Read',
'post',
{ Article: 'http://fbwerks.com:8000/zhen/cookie.html' },
function (response) {
if (!response || response.error) {
alert(response.error);
} else {
alert('Successful! Action ID: ' + response.id);
}
});
}
</script>
<input type="button" value="POST" onclick="postArticle()" />