Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I tried to retrieve the number of share for a specific id like this but not work return null:

private JsonArray SharesData(string id, string token)
    {
        JsonObject da;
        var url = string.Format("https://graph.facebook.com/{0}/shares?access_token={1}&limit=100000", id, token);
        da = (JsonObject)fb.Get(url);
        return (JsonArray)da["data"];
    }

This works well against for like and comment:

 public JsonArray LikesData(string id, string token)
    {
        JsonObject da;
        var url = string.Format("https://graph.facebook.com/{0}/likes?access_token={1}&limit=100000", id, token);
        da = (JsonObject)fb.Get(url);
        return (JsonArray)da["data"];
    }


 public JsonArray CommentsData(string id, string token)
    {
        JsonObject dat = new JsonObject();
        var url = string.Format("https://graph.facebook.com/{0}/comments?access_token={1}&limit=100000", id, token);
        dat = (JsonObject)fb.Get(url);
        return (JsonArray)dat["data"];
    }

thanks,

share|improve this question

1 Answer

up vote 0 down vote accepted

There is no entity "share" in facebook entities (see https://developers.facebook.com/docs/reference/fql/ for the list of entities)

However you can fetch all the stats (including number of shares) for given link using link_stat table.

See https://developers.facebook.com/docs/reference/fql/link_stat/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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