I want to get info (text and uid) from comments in my application.
https://graph.facebook.com/commentID
I think I need my apps access token to get the comment info. How do I get it and echo/alert with comment’s info?
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 request the user to allow your application and then use the access token you get in the request to the Graph API…
the allow of the application can be done in both server side or Javascript (I prefer JS)
an example for how to allow an application and invoke a graph api call can be found in the facebook developers js sdk documentation below:
http://developers.facebook.com/docs/reference/javascript/FB.login/