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>';
}