使用Facebook SDK和Javascript将帖子分享给多个朋友墙

时间:2018-01-05 07:53:49

标签: javascript facebook facebook-graph-api

我想使用facebook API与网站上的多个朋友分享帖子。我已经实现了一个代码来分享你自己的Facebook ID上的帖子。但我期待与多人见面。以下是我在自己的个人资料上分享帖子的代码。

代码:

<!DOCTYPE HTML >
<html>


  <head>

      <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js" type="text/javascript"></script>



  </head>

<body>






  <!-- USE 'Asynchronous Loading' version, for IE8 to work
  http://developers.facebook.com/docs/reference/javascript/FB.init/ -->





  <div id="fb-root"></div>
  <img id = "share_button" src ="img/share_button.png">





</body>
<script type="text/javascript">
  $(document).ready(function(){
  $('#share_button').click(function(e){
  e.preventDefault();
  FB.ui(
  {
  method: 'feed',
  name: 'HyperArts Blog',
  link: 'http://hyperarts.com/blog',
  picture: 'http://www.hyperarts.com/_img/TabPress-LOGO-Home.png',
  caption: 'I love HyperArts tutorials',
  description: 'The HyperArts Blog provides tutorials for all things Facebook',
  message: ''
  });
  });
  });
  </script>
<script>
    window.fbAsyncInit = function() {
        alert("afdad");
    FB.init({
      appId  : '193124077909182',
      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 = 'https://connect.facebook.net/en_US/all.js';
    e.async = true;
    document.getElementById('fb-root').appendChild(e);
    }());
  </script>
</html>

你的帮助将受到高度赞赏。

1 个答案:

答案 0 :(得分:0)

请改用sharer.php:

https://www.facebook.com/sharer/sharer.php?u=http://hyperarts.com/blog

在该对话框中,人们可以分享到朋友的墙上。它只允许一个朋友。可能是为了防止用户向朋友发送垃圾邮件。