I’ve created a Facebook app that is a tab which users can add to their own facebook pages.
I want to display on the main page a list of installers.
Is there a way to find this? Using FQL? GraphAPI?
Thanks in advance,
Rotem
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 this is possible with FQL or the graph api. The only thing I can think of is the tabs connection on the page object, but you need a page token to get it.
I would solve this manually. You can easily get the page id your tab is displayed on from the facebook signed request, and store it in a DB somewhere. Anytime your tab is viewed just add this check and in a short time you will have a full list. Good luck