FB.Uiはcallback functionです。あなたはJavascript SDKから直接、OAuthのダイアログを使用してはならない
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.');
}
}
);
GREAT!ありがとうございました! :-) –
心配しないで、喜んで助けてください – Rippo