The bellow Code出价。 它卸下一台照片,并生成新的照片。 很显然,我不知道如何将其转移到某个地方,最后用一个带有“红字”的空白页。 我想要把直接连接起来,而照片的这种间接联系也应呈报。 我希望用户在光电后重新定位。 当用户在上载纽顿时,照片上载。
$post_login_url = "http://apps.facebook.com/firstestt/upload.processor.php";
$album_name = Facepic Album ;
$album_description = http://apps.facebook.com/firstestt/ ;
$code = $_REQUEST["code"];
$facebook->setFileUploadSupport(true);
//Obtain the access_token with publish_stream permission
if(empty($code))
{
$dialog_url= "http://www.facebook.com/dialog/oauth?"
. "client_id=" . $app_id
. "&redirect_uri=" . urlencode($post_login_url)
. "&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
. "&redirect_uri=" . urlencode( $post_login_url)
. "&client_secret=" . $app_secret
. "&code=" . $code;
$response = file_get_contents($token_url);
$params = null;
parse_str($response, $params);
$access_token = $facebook->getAccessToken();
// 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/> ;
//When this button is pressed the page should upload the photo and redirect the user to another link
echo <input type="submit" value="Upload" /><br/> ;
echo </form> ;
echo </body></html> ;
}