If anyone is familiar with the fql query, why am I getting this error for the next query:
This is the page:https://www.facebook.com/Inna?sk=wall
All I want to do is to retrive the last posts from Inna’s wall.
Thank you very much;
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.
You need to provide a valid access_token with the FQL request even though the data is public. You can test it here. You won’t need to have any permissions granted to access the feed, but you will need to provide the token.
You will need an
access_tokenof type “Any Valid” as defined here. In short, it means that you can use anyaccess_tokenthat hasn’t expired. One easy to obtainaccess_tokenis an app access token which you can obtain by going to:https://graph.facebook.com/oauth/access_tokenclient_id=YOUR_APP_ID&client_secret=YOUR_APP_SECRET&grant_type=client_credentials
You will find YOUR_APP_ID and YOUR_APP_SECRET under your created apps page (or you can create one there if you don’t have one).
When you provide the app id and secret to the oauth, you will receive an
access_tokenwhich you can use for the request until the token expires.