0

我有我的链接在这里:这里Facebook的分享者X框,选择

<a name="fb_share" type="icon_link" share_url="" href=""> 
    <button class="btn btn-large btn-primary tasto" disabled="disabled">Condividi contenuto</button> 
</a> 

而我的JS:

FB.api('/217822418323942', 
function(response){ 
     $('.step_4').children('a').attr('href', 'http://www.facebook.com/sharer.php?u='+response.link+'&t=CONDIVIDI!'); 
}); 

而Chrome给我这个错误:

Refused to display document because display forbidden by X-Frame-Options. 

而且它没有分享......解决方案?

回答

0

解决,Facebook并没有再使用共享资源,正确的代码是:

FB.ui({ 
    method: 'feed', 
    name: response.from.name, 
    link: response.link, 
    picture: 'http://images.sodahead.com/polls/002641083/3649326924_lol_guy_answer_1_xlarge.jpeg', 
    caption: 'LOL.', 
    description: 'meme' 
}, 
function(response) { 
    if (response && response.post_id) { 
     console.log('Post was published.'); 
     } else { 
      console.log('Post was not published.'); 
     } 
});