Getting a list of users from the facebook connect application

I have a website that uses a facebook connection so that users can log in to the login system. If I want to check that the facebook user ID obtained by our database matches those authorized by facebook to our application using facebook and vice versa, how would I do it?

For example, if I enter the facebook developer application and he tells me that we have 7 users (I assume that means 7 people who have “connected” to our application), where I will find a list of these 7 users.

I assume their facebook user ID is publicly available, but I would like to get them in the list related to our application.

I assume this is generally accepted for database maintenance purposes (and in my case just to verify that everything is working correctly).

+3
source share
2 answers

It seems I'm based on the dev console that you cannot get such a list. The best you can do is get friend.getAppUsers()one that gives you a list of your friends who have the app installed. Lazy person; I really really need this for the application I'm working on. I assume that just use authorized, deauthorized backlinks to manage the list of users at your end.

+2
source

I also missed the first part of application users.

, .

- , "appusers"

+1

Source: https://habr.com/ru/post/1721912/


All Articles