I'm currently using jQuery to record each click on a Facebook share link on my site, but I'm looking for a more accurate solution. Instead of recording the clicks, I'd like to record the actual "shares". Is there a way to get a response message back from Facebook after the user shares a link?

link|improve this question

73% accept rate
I doubt it's possible without a facebook application, and even then, it's a bit of a privacy concern. – Earlz Mar 19 '11 at 17:14
What do you mean by "shares"? The like plugin or the old share plugin? – ifaour Mar 19 '11 at 18:12
@ifaour through sharer.php – mike Mar 19 '11 at 18:18
I don't think it's possible with the old sharer – ifaour Mar 19 '11 at 18:36
feedback

3 Answers

up vote 4 down vote accepted

I came across this today: http://graph.facebook.com/http://stackoverflow.com

It returns a total share count for a specified URL. I have unique URLs for each user in my application so I can track their shares easily by using this.

It also works for twitter: http://urls.api.twitter.com/1/urls/count.json?url=http://stackoverflow.com

link|improve this answer
feedback

You could use something like ShareThis instead of your jquery function and even get a bit more insights, analytics etc. However, you will encounter the same problem, created from off-site shares/likes, like posted here: http://forums.sharethis.com/topic.php?id=2947

link|improve this answer
feedback

Here's what I do....Create the share using normal anchor that calls this javascript function (spacing or brackets or something might be off):

FB.ui(
        {

            display:'iframe',
            method: 'stream.publish',
            caption: 'Put something here',
            description: 'put something here',
            name: 'foo',
            link: 'http://www.foo.com',
            picture: 'http://fo.com/img.gif'

        },
        function (response) {
            if (response && response.post_id) {
            //this means the post was completed....response.post_id is the FB post ID

            $.ajax({
                var URL = '/pages/ajax_InsertUserFacebookPost.aspx?';
                URL += 'facebookpostid=' + response.post_id;
                    type: "GET",
                    url: URL,
                    data: "{}",
                    contentType: "application/json; charset=utf-8",
                    dataType: "json",
                    async: true
                });


            } else {
                //alert('Post was not published.');
            }
        }
        );
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.