我做了一个facebook应用程序,在我们的测试页面和服务器上运行良好。
张贴到页面的墙上。现在,它在一个实时页面上,我收到一个错误。有什么办法可以摆脱这个错误吗?似乎我们作为管理员这样做的事实可能是问题所在。
$('#postmessage').click( function(e) {
e.preventDefault();
FB.ui({
display: 'dialog',
method: 'stream.publish',
name: '',
link: '',
picture: '',
caption: '',
description: '',
app_id: '<?php echo $app_id; ?>',
to: '<?php echo $page_id ?>'
},
function(response) {
if (response && response.post_id) {
window.location = '?posted=' + response.post_id;
} else {
if ( $('body').hasClass('en') ) {
alert('There was an error posting your message.' + "\n\r" + 'Please try again or post it directly on the _______ Wall.');
} else {
alert('Une erreur est survenue lors de l\'affichage de votre commentaire.' + "\n\r" + 'S.V.P. recommencer ou commenter directement sur le mur de _______.');
}
}
}
);
});
无法使用此功能是没有意义的。这基本上是一个评论。