I normally get Facebook JSON data that look like this (taken from an example):
{ "data": [
{
"id": "X999_Y999",
"from": {
"name": "Tom Brady", "id": "X12"
},
........
"type": "status",
"created_time": "2010-08-02T21:27:44+0000",
"updated_time": "2010-08-02T21:27:44+0000"
} ] }
}
Anyway, I want to find “Share” click-actions in Facebook, that is, the actions specifically created by users who clicked the “share this link” button.
1) It appears that the API does not explicitly encode such actions…
2) However, they are explicit: Facebook SHARE functions are different than “likes”, “comments”, “wall posts”, “tags”, “image postings”, etc….
3) How can I parse whether or not a Facebook action was, indeed, Shared from a standard Facebook JSON data array?
4) Is there a way to determine if X shared an action by Y ?
1) It appears that the API does not explicitly encode such actions…
2) However, they are explicit: Facebook SHARE functions are different than “likes”, “comments”, “wall posts”, “tags”, “image postings”, etc….
3) How can I parse whether or not a Facebook action was, indeed, a “Share” from a standard Facebook JSON data array?
4) SADLY : It appears that, share actions don’t directly link to the social action created by a facebook user. For example, if X shares a url that Y Posted —
I would certainly appreciate other answers or insights to these thoughts…