Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am extremely new to Facebook API codings and am trying to make a game application where users will be able to see who (in their friend list) is already using the game application. It is pretty much like all the popular Facebook games such as plock, pet society, etc. where users can view their friend's score, profile and ranking in the application.

I've Googled around and searched here for results but most of the methods are using FBML and the REST API which are currently being deprecated. The best I can find are all posts similar to the one here which retrieves the full friend list (which is not quite what I'm going for).

I was wondering if there's any way to implement what I want to do with the Graph API -> user_games_activity?

edit: I forgot to mention that the game is supposed to be integrated in Facebook itself

share|improve this question
possible duplicate of How to get photo and name from several ids at once – BK. Sep 4 '11 at 16:53

2 Answers

Anytime a user uses your game, make sure their user id is in your database, in your users database table for example.

Then, anytime you need to generate the list of the current user's friends who play the game, grab the list of the current user's friends -- see /me/friends -- and check if any of the returned ids are in your users table.

share|improve this answer
Thank you for your reply! So does that mean i have to have an external database and i will not be using Facebook's query in anyway? – Dap Sep 4 '11 at 11:22
Yes, you will need to either maintain an external database as @WayneKao suggests, or get the user ID's in a roundabout way as suggested in my answer below. Facebook does not support the query "Give me all the users who use my application." unfortunately... – Andrew Kozak Nov 24 '11 at 3:15

You don't have to maintain a separate database if you store a starting score or an achievement for each users. To find friends' Games information, simply get .../me/friends for the current User, and then loop through each friend ID returned and query .../FRIEND_ID/scores or .../FRIEND_ID/achievements using the User's access_token.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.