I need someone help.
When I open https://developers.facebook.com/docs/reference/api/ and clicked https://graph.facebook.com/me/likes?access_token=blablabla, I got all page that I’ve liked.
My questions was, from where I got the access_token value? can I get it by script?
Facebook developer site leverages an internal test console application that all developers can use to test calls within the documentation, site automatically appends the access_token.
A next place one can find the access token is https://developers.facebook.com/tools/explorer with the Graph API Explorer app.
You can also get it via script by following one of the authentication flows described at http://developers.facebook.com/docs/authentication/
You will need to create an application at https://developers.facebook.com/apps then,
For example via PHP using a server side flow,
See more of the reference information available at http://developers.facebook.com/docs/authentication/server-side/