Reading my own Feed in Facebook-API https://graph.facebook.com/me/feed with a valid Access-Token gives me the result shown below. How can i retrieve the Link, which was liked by me?
A similar Response i get when there was a Photo liked. How to determine the Photo-URL?
{
"id": "xxxxxxx_yyyyyy",
"from": {
"name": "XXX",
"id": "xxxxxx"
},
"story": "Peter likes a link.",
"story_tags": {
"0": [
{
"id": "xxxxxxx",
"name": "Peter",
"offset": 0,
"length": 11,
"type": "user"
}
]
},
"type": "status",
"application": {
"name": "Likes",
"id": "2409997254"
},
"created_time": "2012-09-21T21:31:06+0000",
"updated_time": "2012-09-21T21:31:06+0000",
"comments": {
"count": 0
}
}