I'm trying to upload a photo to an album of a fan-page using the php sdk:
$this->facebook->setFileUploadSupport(true);
$fields['image'] = '@'.realpath($source);
$fields['message'] = $message;
$fields['access_token'] = $this->settings['access_token'];
$return = $this->facebook->api($albumID.'/photos', 'POST', $fields);
$this->facebookis an object of the facebook SDK$albumIDis the ID of an album that belongs to the fan-page- My app has the permissions
publish_stream,user_photos,manage_pagesand some more
The upload works, but the picture gets placed in the album [myAppName] Photos that belongs to the page owner.
How can I accomplish, that the photo gets uploaded to the specified album? Thanks in advance!
