I'm trying to make an App on Facebook. From that app the user should to able to upload a Photo or comment to the app's album. I did the comment part, So the user is able to post a comment from the app to the app's wall.
But I am not able to POST a photo to the apps photo album. When ever I upload any picture it goes to the user wall.
The below code is what im using.
$fb = new Facebook(array(
'appId' => '2420527xxxxxxx',
'secret' => 'a6b14d618xxxxxxxxxxxxxxxxxxx'
));
$graph_url= "https://graph.facebook.com/".$fb->getAppId()."/photos?access_token=".$fb->getAccessToken();
echo "
<form enctype="multipart/form-data" action="'.$graph_url.'" method="post">
<input name="source" type="file" /><br/>
<input name="message" type="text" value="" /><br/>
<input type="submit" value="Upload"/>
</form>
";
Have anybody here done that before..? Any help would be appreciate