nguyenvanduocit
6/2/2014 - 8:16 PM

facebook.sdk.v4.publish_Post

<?php
 
// make api call
$response = (new FacebookRequest(
    $session, 'POST', '/me/feed', array(
      'name' => 'Facebook API: Posting a Status Update Using PHP SDK 4.0.x',
      'caption' => "I'm rewriting old tutorials to work with the new PHP SDK 4.0 and Graph API 2.0.",
      'link' => 'https://muatocroi.com',
      'message' => 'Check out my new tutorial'
    )
  ))->execute()->getGraphObject()->asArray();
 
// output response - should include post_id
print_r( $response );