1
    window.fbAsyncInit = function() {
        FB.init({
            appId      : 'xxxxxxxxxxxxx', // App ID
            status     : true, // check login status
            cookie     : true, // enable cookies to allow the server to access the session
            xfbml      : true
        });
    };      
    function postToFeed (){
        var obj = {
            method: 'feed',
            link: 'https://www.xxxxx.kr/',
            picture: 'https://www.xxxxx.kr/banner-1.jpg',
            name: 'xxx',
            caption: 'https://www.xxxxx.kr/',
            description: 'bbbb'
        };

        function callback(response) {
            console.log(response);
        }

        FB.ui(obj, callback);
    };

    (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')); 

<a href="javascript:postToFeed();">[feed]</a><br>

这是我的来源我有一个问题这个来源不仅适用于Android浏览器

chrome 打开 - [feed] 点击 - 白色浏览器打开 立即关闭 - 回调函数运行 - console.log(response) - response==undefined

我不知道帮帮我

4

0 回答 0