I’m trying to get all the permissions a user must provide to accept one Facebook application in question. Does anyone know how can I do that ? (I have the appId and the appSecret)
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.
Ok I found the answer to my question. I write it down in case someone has the same problem one day.
I just had to do a FQL query. There are two fields “auth_referral_user_perms” and “auth_referral_friend_perms” in the table application corresponding to what I was looking for : the “User & Friend Permissions” that we set in the application dashboard (https://developers.facebook.com/apps/APP_ID/permissions).
Using the PHP SDK :
Thanks everyone for your help.