I use the long lived access_token (2 months) for posting content on a Facebook fan page.
So I use the following for posting text (with success):
$params = array(
'access_token' => 'token',
'message'=> ":-) <3",
'image' => '@' . $image['file']
);
$post_id = $facebook->api('/'.$page_id.'/feed','post',$params);
And this code for posting photos in a album
$facebook->setFileUploadSupport(true);
$image['file'] = 'images/rezultate/facebook_photo_170439606380900.jpg';
$args = array( 'access_token' => 'token', 'message' => ':-) <3', 'no_story' => 0);
$args['image'] = '@' . $image['file'];
$target_url = "https://graph.facebook.com/356048711158011/photos";
$ch = curl_init();
curl_setopt ($ch,CURLOPT_URL,$target_url);
curl_setopt ($ch, CURLOPT_POST, 1);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $args);
curl_exec($ch);
curl_close ($ch);
The problem is: why with long lived access token I cannot post photos? Only text, but if I use 2 hours (short-lived) access token I can post photos.