A list of amazingly awesome PHP libraries, resources and shiny things.
- Composer/Packagist - A package and dependency manager.
- Composer Installers - A multi framework Composer library installer.
| <?php | |
| // post to page | |
| $page_post = (new FacebookRequest( $session, 'POST', '/'. $page_id .'/feed', array( | |
| 'access_token' => $access_token, | |
| 'name' => 'Facebook API: Posting As A Page using Graph API v2.x and PHP SDK 4.0.x', | |
| 'link' => 'https://www.webniraj.com/2014/08/23/facebook-api-posting-as-a-page-using-graph-api-v2-x-and-php-sdk-4-0-x/', | |
| 'caption' => 'The Facebook API lets you post to Pages you administrate via the API. This tutorial shows you how to achieve this using the Facebook PHP SDK v4.0.x and Graph API 2.x.', | |
| 'message' => 'Check out my new blog post!', | |
| ) ))->execute()->getGraphObject()->asArray(); |
A list of amazingly awesome PHP libraries, resources and shiny things.