posted by 네코냥이 2013. 11. 15. 16:53


하나의 정의로 해결됬다.

FB.api

FB.api makes API calls to the Graph API.


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);
  }
});