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');
}
});
}