0
我試圖讓我的facebook應用程序autopost在他們接受了權限之後進入了牆壁,但是我嘗試了很多東西,但我不能讓它工作。Facebook應用程序Stream_publish
這是東西ived tryid之一:
FB.ui(
{
method: 'feed',
to: friendId,
name: 'title',
link: 'http://host.com/title_link.com',
picture: 'http://host.com/image.jpg',
description: 'description',
caption: 'caption',
},
function(response) {
// Check for a posting to wall
if (response && response.post_id) {
// do some logging
}
}
});
是否有任何人有一個示例代碼:)?