我正在使用 JS-API 生成一个对话框,请求允许发布我的应用程序生成的状态消息。下面是我正在谈论的屏幕截图:
这是代码:
FB.ui(
{
method: 'feed',
name: 'Facebook Dialogs',
link: 'http://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.',
message: 'Facebook Dialogs are easy!'
},
function(response) {
if (response && response.post_id) {
alert('Post was published.');
} else {
alert('Post was not published.');
}
}
);
我使用文档中所述的示例 JS 代码,如果在浏览器设置中没有阻止弹出窗口,它会很好地工作。但是如果没有显示状态消息,则该应用程序没有实用程序!
请帮忙; 我被困在最后一个阶段。