繁体   English   中英

使用api在Facebook墙上共享?

[英]share on facebook wall using api?

在我的Web应用程序中,我需要一个简单的功能。 我有一个URL链接,有一个facebook按钮,提示用户将URL共享到他/她的墙上。

如图所示 在此处输入图片说明

只需使用window.open或具有以下格式URL的此类文件即可:

http://facebook.com/share.php?u=http://www.google.com

 <script type="text/javascript">
        function streamPublish(name, description, hrefTitle, hrefLink, userPrompt){        
            FB.ui({ method : 'feed', 
                    message: userPrompt,
                    link   :  hrefLink,
                    caption:  hrefTitle,
                    picture: 'http://192.168.1.5/FrostBox1.0/photo/share_photo.jpg'
           });
           //http://developers.facebook.com/docs/reference/dialogs/feed/

        }
        function publishStream(){
            streamPublish("Stream Publish", 'Check my public link!', 'Public Link!', 'www.frostbox.com/link', "Public Link to my File");
        }

        function newInvite(){
             var receiverUserIds = FB.ui({ 
                    method : 'apprequests',
                    message: 'Come on man checkout my applications. visit http://ithinkdiff.net',
             },
             function(receiverUserIds) {
                      console.log("IDS : " + receiverUserIds.request_ids);
                    }
             );
             //http://developers.facebook.com/docs/reference/dialogs/requests/
        }
    </script>
</head>

<script type="text/javascript" src="http://connect.facebook.net/en_US/all.js"></script>
 <script type="text/javascript">
   FB.init({
     appId  : 'fffffffffff',
     status : true, // check login status
     cookie : true, // enable cookies to allow the server to access the session
     xfbml  : true  // parse XFBML
   });

 </script>



<a href="#" onClick="publishStream(); return false;">Publish Wall post using Facebook Javascript</a>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM