0

在我的 php 代码中,我使用以下代码共享数据:

    <a id="fbshare" class="fbshare" href="#" onclick="fbshare()" name="fb_share" share_url="<?=$dataLink"></a>
<script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script>

我想要响应/事件回到页面。

任何可观的帮助.. !!!

4

1 回答 1

1
    FB.ui(
   {
     method: 'feed',
     name: 'Facebook Dialogs',
     link: 'http://developers.facebook.com/docs/reference/dialogs/',
     picture: 'http://fbrell.com/f8.jpg',
     caption: 'Reference Documentation',
     description: 'Dialogs provide a simple, consistent interface for applications to interface with users.',
     message: 'Facebook Dialogs are easy!'
   },
   function(response) {
     if (response && response.post_id) {
       alert('Post was published.');
     } else {
       alert('Post was not published.');
     }
   }
 );

我想你在你的 fbshare 函数中调用 FB.ui 方法,你可以在那里添加一个函数来获得响应,这里是一个示例代码。

于 2012-08-29T11:11:45.847 回答