when below form submitted the form action is set to $graph_url in my case when the album name, description, image database insertion operation completed after below code is executed i don't know how to set $graph_url before database insertion operation took place? below code post photo in facebook alubm successfully..... Any help is appreciated.... it's urgent!!!!! plz..... below code took from https://developers.facebook.com/blog/post/498/
$app_id = "391620680862988";
$app_secret = "62133e5c158218fc4339bf951252e1fa";
$album_name = 'My Album';
$album_description = 'My Album Desc';
$code = '';
//Obtain the access_token with publish_stream permission
if(!empty($code))
{
$dialog_url= "http://www.facebook.com/dialog/oauth?"
. "client_id=" . $app_id
. "&scope=publish_stream";
echo("<script>top.location.href='" . $dialog_url .
"'</script>");
}
else {
$token_url= "https://graph.facebook.com/oauth/"
. "access_token?"
. "client_id=" . $app_id
. "&client_secret=" . $app_secret;
$access_token = 'AAAFkLUuRzQwBAJ3BmabJCXvaYdag9TZBiDUEHf7XqThFSIZAUCHrFFnQrKu96lOoSPw21TNVvANMlM8kr3yzEv6IT8ZC1XedI9RNEnuxAZDZD';
// Create a new album
$graph_url = "https://graph.facebook.com/me/albums?"
. "access_token=". $access_token;
$postdata = http_build_query(
array(
'name' => $album_name,
'message' => $album_description
)
);
$opts = array('http' =>
array(
'method'=> 'POST',
'header'=>
'Content-type: application/x-www-form-urlencoded',
'content' => $postdata
)
);
$context = stream_context_create($opts);
$result = json_decode(file_get_contents($graph_url, false,
$context));
// Get the new album ID
$album_id = $result->id;
//Show photo upload form and post to the Graph URL
$graph_url = "https://graph.facebook.com/". $album_id
. "/photos?access_token=" . $access_token;
echo '<html><body>';
echo '<form enctype="multipart/form-data" action="'
.$graph_url. ' "method="POST">';
echo 'Adding photo to album: ' . $album_name .'<br/><br/>';
echo 'Please choose a photo: ';
echo '<input name="source" type="file"><br/><br/>';
echo 'Say something about this photo: ';
echo '<input name="message" type="text"
value=""><br/><br/>';
echo '<input type="submit" value="Upload" /><br/>';
echo '</form>';
echo '</body></html>';
}
