2010-07-25 39 views

回答

0

如果你看看 stream.publish的例子,post_id與響應一起返回。

+0

感謝您的回答,但真的需要通過服務器端呼籲發佈 – Donald 2010-07-25 02:22:07

+0

例如,一個PHP調用 – Donald 2010-07-25 02:23:56

0

從他們的FB.api docs看這個例子,這當然是可能的。

var body = 'Reading Connect JS documentation'; 
FB.api('/me/feed', 'post', { body: body }, function(response) { 
    if (!response || response.error) { 
     alert('Error occured'); 
    } else { 
     alert('Post ID: ' + response); 
    } 
}); 
相關問題