0

私はここに私のリンクを持っています:

<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.

そしてそれは共有しませんでした...解決策?

4

1 に答える 1

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.');
        }
});
于 2012-08-06T11:15:46.187 に答える