Skip to content

Instantly share code, notes, and snippets.

@ursuleacv
Forked from niraj-shah/page_post.php
Last active August 29, 2015 14:15
Show Gist options
  • Save ursuleacv/d1165d281c20a60e4bcd to your computer and use it in GitHub Desktop.
Save ursuleacv/d1165d281c20a60e4bcd to your computer and use it in GitHub Desktop.
<?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();
// return post_id
print_r( $page_post );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment