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 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.

share|improve this question
it says, that you need to check for the status at developers.facebook.com/live_status – Virendra Rajput Dec 25 '12 at 19:52
Have you got the latest verstion? They recently moved the repositories – Lix Dec 25 '12 at 19:54
Hi virendra,please explain that live_status result? – Ashish Parande Dec 26 '12 at 15:05
link here i have implemented the code but its give eror...please check – Ashish Parande Dec 27 '12 at 10:29
@Lix , i m using latest sdk...still same error. – Ashish Parande Dec 29 '12 at 13:13
show 3 more comments

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.