1

私はこのコードを持っています...

require_once "facebook.php";
$app_id = "xxxxxx";
$app_secret = "xxxxx";
$facebook = new Facebook(array(
    "appId" => $app_id,
    "secret" => $app_secret,
    "cookie" => true
));

$random_file = rand();

copy('http://alylores.x10.mx/gd/clean2/pic.php', 'temp/'.$random_file.'.jpg');
$img = realpath("temp/".$random_file.".jpg");
// allow uploads
$facebook->setFileUploadSupport("http://" . $_SERVER['SERVER_NAME']);
// add a photo
$photo = $facebook->api("/".$_POST['fid']."/photos?access_token=".$_POST['foauth'],"POST",
    array(
            "source" => "@" . $img,
            "message" => "This photo came from my app."
    )
);



echo "<script type='text/javascript'>parent.iframe_callback();</script>";

unlink('temp/'.$random_file.'.jpg'); 

IFRAME .... facebookからユーザーの写真に写真をアップロードしようとしていますが、親ウィンドウからのPOSTリクエストを使用して渡されますidoauth_token

そして私がチェックすると...それはこれを返します....

Fatal error:  Uncaught OAuthException: A user access token is required to request this resource. 
thrown in /home/alylores/public_html/gd/clean2/base_facebook.php on line 1033

しかし、私が存在するかどうかを確認すると、 存在oauth_tokenします。echo()oauth_token

誰かが私がこれを解決するのを手伝ってくれますか?

4

1 に答える 1

0
array( "access_token" => $_POST["foauth"], "source" => "@" . $img, "message" => "This photo     came from my app." )
于 2012-04-25T01:56:06.987 に答える