У меня такая ситуация.В моем вызове FB.api мне был возвращен неизвестный объект JSON.Я пытаюсь понять, как заглянуть в этот объект JSON!
FB.api('/me/feed', 'post', wallPost , function(response) {
if (!response || response.error) {
alert('Error occured' + response);
} else {
alert('Post ID: ' + response);
}
});