I'm completely new to Facebook app development, so please bear with me.
I've been asked to create a Facebook Page, with an application that will let users upload photos into one of the Page's albums.
I've managed to create the page, let's call it MyPage. I've also created an app MyApp, and I've added the App to the profile of the Page. Now, when you view MyPage profile, on the left (tabs), you will already find MyApp.
MyApp points to a php page on my hosting account. It has a form with a file field:
<form action="<?=$PHP_SELF;?>" enctype="multipart/form-data" method="post">
<input name="MAX_FILE_SIZE" type="hidden" value="10000000" />
<input id="fileSelect" name="fileSelect" type="file" />
<input name="submit" type="submit" value="Upload" />
</form>
and the following code to handle the uploaded file and supposedly put into MyPage's album:
if(count($_FILES)){
$name = ereg_replace(' ', '_', basename($_FILES['fileSelect']['name']));
$uploadFile = "uploads/" . $name;
if (move_uploaded_file($_FILES['fileSelect']['tmp_name'], $uploadFile)) {
$facebook->setFileUploadSupport(true);
$args = array('message' => 'Photo Caption');
$args['image'] = '@' . realpath($uploadFile);
$data = $facebook->api('/THE_ALBUM_ID/photos', 'post', $args);
//get rid of the original on the main server
unlink($uploadFile);
}
}
However, when the "Upload" button is submitted, I get this error, right in MyPage's iframe for MyApp:
Fatal error: Uncaught OAuthException: (#120) Invalid album id thrown in /COMPLETE_PATH/facebook-php-sdk/src/base_facebook.php on line 1033
Even tho the album id is really correct, and displays when I use Graph API Explorer, or graph.facebook.com/THE_ALBUM_ID
By the way, I put this on top of the script:
require 'facebook-php-sdk/src/facebook.php';
$facebook = new Facebook(array(
'appId' => 'THE_APP_ID',
'secret' => 'THE_APP_SECRET',
));
What am I missing? Any help would be much appreciated.