Skip to content

Instantly share code, notes, and snippets.

@niraj-shah
Last active May 16, 2023 10:32
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save niraj-shah/beb508a7535040e202b9 to your computer and use it in GitHub Desktop.
Save niraj-shah/beb508a7535040e202b9 to your computer and use it in GitHub Desktop.
Posting to a Page using Facebook PHP SDK v4.0.x and Graph API v2.x
<?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 );
@minhvn
Copy link

minhvn commented May 18, 2016

How to get $session above?
I want only post to page wen have papgeid vs access token.
Thank you very much.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment