Vilma Miranda
Vilma Miranda

Reputation: 41

How do I list my app users in facebook

I'm trying to get all the users of my application. So far I found this method:

SELECT uid FROM user WHERE is_app_user = 1 AND uid IN (SELECT uid2 FROM friend WHERE uid1 = $user)

However this return my friends who are using the app. I want all users, whether they are my friends or not. Is something like this possible?

Upvotes: 0

Views: 449

Answers (1)

Tolga Arican
Tolga Arican

Reputation: 476

It is not possible for security reasons. You have to log your app users but there are restrictions about this issue. You can check it out from: http://developers.facebook.com/policy/

Upvotes: 1

Related Questions