0

誰かが私のウェブサイトのボタンをクリックすると、これを使用して一部のコンテンツを Facebook に共有できます。

FB.ui(
{
    method: 'feed',
    name: 'Facebook Dialogs',
    link: 'https://developers.facebook.com/docs/reference/dialogs/',
    picture: 'http://fbrell.com/f8.jpg',
    caption: 'Reference Documentation',
    description: 'Dialogs provide a simple, consistent interface for applications to interface with users.'
},
function(response) {
    if (response && response.post_id) {
    alert('Post was published.');
    } else {
    alert('Post was not published.');
    }
}
);

Twitterでコンテンツをつぶやくのに似たようなものはありますか。

4

2 に答える 2