[Debuging Note]
Facebook Graph Api 왜 Post로 실행 안되는걸까?
네코냥이
2013. 11. 15. 16:53
하나의 정의로 해결됬다.
Post로 날리는게 아니다 --;......
var body = 'Reading JS SDK documentation';
FB.api('/me/feed', 'post', { message: body }, function(response) {
if (!response || response.error) {
alert('Error occured');
} else {
alert('Post ID: ' + response.id);
}
});