我正在使用Facebook
处理共享功能。登录功能正常。但是当我尝试使用示例代码分享内容时,它显示为
抱歉,出了点问题。
我们正在努力尽快修复此问题。
我正在使用的代码是
$('#fb_test').on('click', function(e){
e.preventDefault();
FB.ui(
{
method: 'feed',
name: 'This is the content of the "name" field.',
link: 'URL which you would like to share ',
picture: "URL of the image which is going to appear as thumbnail image in share dialogbox",
caption: 'Caption like which appear as title of the dialog box',
description: 'Small description of the post',
message: ''
}
);
});
答案 0 :(得分:0)
使用此代码代替您的代码,这样可以正常使用。
首先在 body 标记
之后引用此fb脚本<script>
window.fbAsyncInit = function() {
FB.init({
appId : 'app_id',
xfbml : true,
version : 'v2.8'
});
FB.AppEvents.logPageView();
};
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
然后在<a>
点击上调用此方法:
function ShareOnFacebook(){
FB.ui(
{
method: 'feed',
name: 'test Blog title',
link: 'http://stackoverflow.com/',
picture: 'https://pbs.twimg.com/profile_images/740344950097903616/mORHo2rZ.jpg',
caption: 'I love stackoverflow',
description: 'The stackoverflow forum will provide good solutions',
message: ''
});
}
这对你有用:)
答案 1 :(得分:0)
似乎该错误可能由于多种原因而发生,并且它们没有告诉您问题出在哪里。
在我的情况下,我从#标签字段中省略了#号,这显然是完全失败的原因。
win.FB.ui({
method: 'share',
href,
hashtag: '#wow', // NOT 'wow'
})