[Solved] am i allow parsing(getting) content from a facebook page


What you need to do is make use of the PHP SDK for the Graph API that Facebook provides for you to use.

The API requires for you to setup tokens to determine you are who you say you are and also that the data you request is sent securely. These are all documented within Facebook’s own API documentation for the API.

Start building your app using the PHP SDK and Graph and see where you get to, it would be better to try and figure out how to use it all yourself so you know for future reference than just getting someone to do the work for you.

An example of using the API is below:

/* PHP SDK v4.0.0 */
/* make the API call */
$request = new FacebookRequest(
  $session,
  'GET',
  '/me'
);
$response = $request->execute();
$graphObject = $response->getGraphObject();
/* handle the result */

PHP SDK: https://developers.facebook.com/docs/reference/php/4.0.0?locale=en_GB

General API Documentation: https://developers.facebook.com/docs/graph-api?locale=en_GB

solved am i allow parsing(getting) content from a facebook page