0

我想知道用户在点击我提供的按钮后何时在 Facebook 或 Tweets 上分享我的网站 - 有没有办法使用 Javascript 来做到这一点?

4

2 回答 2

1

您可以只使用AddThisShareThis 之类的服务吗?

他们都有报告工具来查看页面被共享了多少次。

于 2012-08-03T20:43:33.083 回答
0

您可以将FB.Event.subscribe用于 facebook。

FB.Event.subscribe('edge.create',
    function(response) {
        alert('You liked the URL: ' + response);
        // you can make an ajax request to save this "Like", it's up to you.
    }
);
于 2012-08-03T20:42:48.963 回答