views:

28

answers:

2

i was wondering if it was possible to fetch a list of a user's facebook application ids via the graph api.

after looking at http://developers.facebook.com/docs/reference/api/user, it looks as though it is not a possible connection, but i want to ask the pros before i am completely shut down =(

thanks!

A: 

guess the answer is no... i'm very disappointed. oh well =(

Garrett
+2  A: 

I think the most you can do is retrieve a list of applications the current user is a fan of, by running FQL on page_fan table:

SELECT page_id FROM page_fan WHERE uid = 12345

If a user enjoys some app there is a good chance that he or she might be a fan of it.

serg
amazing! i guess not all hope is gone. thx serg.
Garrett

related questions