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 want to use the below code part to upload a picture in a specified album. I have set the photo_upload permission for my app, but when I try to upload an image it says "Error occured".

Can you help me out?

Thanks

function postPicture() {

var photo_details = {
    name: 'Some text',
    source: 'http://example.com/test.jpg'
};

FB.api('/317233448307225/photos', 'post', photo_details, function(response) {
    if (!response || response.error) {
    alert('Error occured');
    } else {
    alert('Photo Uploaded Succesfully');
    }
});

}
share|improve this question
What error is the API returning? The sample you have there is swallowing the error. – Igy Dec 29 '11 at 15:38
at first it needed the acces_token. I solved that, but after that I received another error. This time the error was: (#324) Requires upload file. I tried the '@'.realpath('something.jpg') version but it's not working. – Szabolcs Balazs Dec 29 '11 at 21:22
1  
Sounds like you haven't provided a file - see here: facebook.stackoverflow.com/questions/4999024/… for an example which other people have working – Igy Dec 30 '11 at 9:04

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.