簡體   English   中英

使用Facebook API在用戶牆上發布圖像和評論的簡單方法

[英]Simple way to post image and comment to users wall with Facebook API

我只想將圖像和評論從我自己的站點發布到Facebook用戶自己的牆。

我在各個地方和Facebook API文檔中進行了瀏覽,但是找不到實現基本任務的直接方法。

FB自己的文檔似乎過於復雜。 我已經在圖形API選項卡中設置了應用程序以及對象,動作和聚合,但是似乎無法獲得所需的信息。

任何人都可以提出一種方法或文章來概述允許我傳遞注釋和圖像參數的正確過程,或者可以提供比FB自己的文檔更好地解構該問題的文章。

任何指針將不勝感激。

在developer.facebook.com后端制作一個應用,並在下面的相應位置填寫您的APP ID。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">  
    <title>Facebook Sharer</title>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>


    <script>
    $(function() 
    {

        $('#share_button').live('click', function(e)
        {
            e.preventDefault();

            var share_name          = $('input[name="share_name"]').val();
            var share_link          = $('input[name="share_link"]').val();
            var share_image         = $('input[name="share_image"]').val();
            var share_caption       = $('input[name="share_caption"]').val();
            var share_description   = $('input[name="share_description"]').val();

            var share_redirect      = $('input[name="share_redirect"]').val();


            FB.ui(
            {
                method:         'feed',
                name:           share_name,
                link:           share_link,
                picture:        share_image,
                caption:        share_caption,
                description:    share_description
                //message:      ''
            },
            function(response) 
            {
                if (response && response.post_id) 
                {
                    //alert('thanks for sharing!');
                    window.top.location.href = share_redirect;
                } 
                else 
                {
                    //alert('Post was not published.');
                }
            });

            // return false;

        });


    });
    </script>


</head>
<body>



<div id="share_button">share me!</div>



<input type="text" name="share_name" value="Boffins" />
<input type="text" name="share_link" value="http://google.com"/>
<input type="text" name="share_image" value="http://sstatic.net/stackoverflow/img/tag-logo-facebook.png"/>
<input type="text" name="share_caption" value="Yes"/>
<input type="text" name="share_description" value="sadfdsdsfasdaffdasfds"/>

<input type="text" name="share_redirect" value=""/>



<div id="fb-root"></div>




<script type="text/javascript">


window.fbAsyncInit = function()
{
    FB.init({
        appId   : [APP ID],
        status  : true, // check login status
        cookie  : true, // enable cookies to allow the server to access the session
        xfbml   : true  // parse XFBML
    });

};

(function() 
{
    var e = document.createElement('script');
    e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
    e.async = true;
    document.getElementById('fb-root').appendChild(e);
}());

</script>





</body>
</html>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM