FB Connect: is there a way to see the logged in user's facebook apps?
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 开发者_Python百科connection, but i want to ask the pros before i am completely shut down =(
thanks!
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.
精彩评论