Iam trying to upload image to facebook album. Now images are uploaded to an album having facebook app name. I would like to upload images to an album named 'Flowers'.
I am using the following code.
<?php
require_once 'fbpic/library/facebook.php';
$app_id = "xxxx";
$app_secret = "xxxxx";
$facebook = new Facebook(array(
'appId' => $app_id,
'secret' => $app_secret,
'cookie' => true
));
$fbcheck= $facebook->getUser();
if(is_null($fbcheck) or !$fbcheck or $fbcheck==0)
{
header("Location:{$facebook->getLoginUrl(array('scope' => 'user_status,publish_stream,user_photos,photo_upload'))}");
}
$facebook->setFileUploadSupport("http://" . $_SERVER['SERVER_NAME']);
// add a status message
$photo = $facebook->api('/me/photos', 'POST',
array(
'source' => '@' .realpath("ContactUs.jpg") ,
'message' => 'It is a programming test'
)
);
?>