When using the Facebook API to login to a website, can you pull a list of that user’s friends who have logged in using the same app id?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I don’t think that there’s a Graph API method for this yet, there’s a REST method though called
friends.getAppUsers.Now to do this without REST API there are a couple of ways, one of them:
usertable if not exists/USER_ID/friendsconnectionusertable:SELECT * FROM user WHERE user_fb_id IN ($friends_id)