I have an application on Facebook where I select a picture and I can upload to an album associated with the application.
I found some code about it, but until now, I could upload only to my personal account.
With this code I can get all the album details of the application:
$facebook->api('/app_id/albums?access_token='.$acces_token);
That's cool, I get a list, but after this, I do the following:
$upload_photo = $facebook->api('/'.$album_id.'/photos?access_token='.$acces_token, 'post', $photo_details);
And I always get the following exeption: Fatal error: Uncaught OAuthException: (#100) Invalid ID for album owner thrown in
What is the problem?! Maybe I don't have the right permissions? Or am I missing something?
I even tried this:
$create_album = $facebook->api('/app_id/albums?access_token='.$acces, 'post', $album_details);
$album_uid = $create_album['id'];
$upload_photo = $facebook->api('/'.$album_uid.'/photos?access_token='.$acces, 'post', $photo_details);