2011-12-04 33 views

回答

0

「via +應用程序的名稱」是不能改變的。用戶需要知道該帖子來自該應用程序。你不能刪除它...
關於回調 - 你可以這樣使用它:

// calling the API ... 
var obj = { 
    method: 'feed', 
    link: 'https://developers.facebook.com/docs/reference/dialogs/', 
    picture: 'http://fbrell.com/f8.jpg', 
    name: 'Facebook Dialogs', 
    caption: 'Reference Documentation', 
    description: 'Using Dialogs to interact with users.' 
}; 


FB.ui(obj, function(){ 
    // Here you can put your code to be executed after the user publishes his/her post. 
});