Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to create a wall post on a page managed by the logged in user through Drupalforfacebook (Drupal 6). I've logged in as the user and I've obtained the following extended permissions:

  • offline_access
  • manage_pages
  • user_status

I've also authorized the application to post to the wall of the page administrated by the user. Facebook responses with no errors but the post never appears on the page's wall. I've tried using both the Graph API and the REST API and I get the same result with each.

$fb = $GLOBALS['_fb'];
$page_id = variable_get('fb_publish_page_id', NULL);

$post = array(
    'name' => $node->title,
    'description' => filter_xss($node->teaser, array()),
    'caption' => $user_message,
    'link' =>  url('node/' . $node->nid, array('absolute' => TRUE)),
    'access_token' => fb_get_token($fb, fb_facebook_user()),
);

try {
    $result = $fb->api($page_id . '/feed', 'post', $post);
    drupal_set_message('Posted using updated api call ' . $result['id']);
}
catch (FacebookApiException $e) {
    drupal_set_message('Well that didnt work.', 'error');
    print '<pre style="height: 400px; overflow: scroll;">';
    print_r($e);
    print '</pre>';
}
share|improve this question
I should point out that if I post to me/feed instead of the page the post shows up on my wall. Issue is only with posting to the page. – ornj Sep 16 '11 at 14:22
$result is an array with an id which according to the documentation, developers.facebook.com/docs/reference/api/page/#posts means everything went ok... – ornj Sep 16 '11 at 15:35

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.