Something like that.
try { $facebook->setFileUploadSupport('http://www.example.com/'); $response = $facebook->api( '/me/photos/', 'post', array( 'message' => 'This is my image caption', 'source' => '@/path/to/image'
EDIT: First you need to authenticate using this code.
$facebook = new Facebook(array( 'appId' => 'YOUR_APP_ID', 'secret' => 'YOUR_APP_SECRET', 'cookie' => TRUE, 'domain' => $_SERVER['SERVER_NAME'] )); $facebook->getSession(); try { $me = $facebook->api('/me'); } catch (FacebookApiException $e) { $me = NULL; } if ( is_null($me) ) { $auth_url = $facebook->getLoginUrl(array( 'req_perms' => 'read_stream,publish_stream,user_photos' )); header("Location: $auth_url"); }
Here is a link to all permissions that you can set to the user.
user585756
source share