Im trying to upload a photo to one of my albums on facebook, with the below code, but no upload and now error? What are I missing? I have a album thats called Loggfoton where I want the photos to end up, or if there is no album at all, then that one is created.
function uploadphoto(){
var imgURL = "http://www.mydomain.se/armani1.jpg";FB.api('/me/photos', 'post', { message: 'photo description', access_token: accessToken, url: imgURL }, function (response) { if (!response || response.error) { alert('Error occured:' + response); } else { alert('Post ID: ' + response.id); } }); }
Any input really appeciated! Thanks!