I've been using the following FQL, trying to figure out how to get all of my friends' page likes:
SELECT name FROM page WHERE page_id IN
(SELECT page_id FROM page_fan WHERE uid IN
(SELECT uid1, uid2 FROM friend WHERE uid1 = me())
)
It works somewhat to my liking, but I'm unable to tell which 'uid' belongs to which page name. Something like the following is returned:
{
"data": [
{
"name": "Snoop Dogg"
},
{
"name": "Good Grief"
},
{
"name": "Aaliyah"
}
]
}
I've also tried using the Graph API, but it times out. Is there some way that I can get my results to look something more like:
{
"data": [
{
"uid" : "987234",
"name": "Snoop Dogg"
},
{
"uid" : "987234",
"name": "Good Grief"
},
{
"uid" : "234789",
"name": "Aaliyah"
}
]
}
Thanks in advance.