I am using graph api to upload photo to facebook album while uploading its give fatal error -
Fatal error: Uncaught OAuthException: Sorry, we weren't able to post this.: Please try again later. If this keeps happening, you can check the Known Issues on Facebook page to check for updates. thrown in /home/luvceleb/public_html/includes/facebook-php-sdk-master/src/base_facebook.php on line 1249
code -
$theUploadFile=$_SERVER['DOCUMENT_ROOT']."/photos".$filePath;
$photo_details = array(
'message'=> '12345',
'image'=> '@' . realpath($theUploadFile)
);
$upload_photo = $facebook->api('/'.$album_uid.'/photos', 'post', $photo_details);
Please help me to resolve this. Thanks.