我们正在使用我们以前使用过的代码,所以我怀疑这可能与站点相关。在使用标准时:
FB.ui(
{
method: 'feed',
app_id: '<?= $LDP->config->facebook->id ?>',
name: 'Post Name',
link: flink,
picture: "https://www.domain.ca/templates/visual/images/share.gif",
caption: "Caption",
description: 'Join the fun today!',
actions: [
{ name: "Check it out!", link: flink }
]
},
function(response) {
if (response && response.post_id) {
alert('Post was published.');
} else {
alert('Post was not published.');
}
}
);
它首先显示预期的共享对话框,当您单击右下角的按钮以通过流发布时,会出现一个新的弹出窗口,其中包含:
标题:需要验证码
未知错误
安全检查请输入以下文字
[验证码出现]
唯一的按钮是“确定”。正确解决验证码会导致崩溃(Facebook 服务器抛出 500 错误)。
有任何想法吗?