0

我有一个具有 Facebook 功能的网站(发送个人消息、发布到墙上)。我有一个带有将图像发布到用户wall photos相册的表单的页面。

我的问题是,在发布图片(发布表单)后,我被重定向到这个网址: https://graph.facebook.com/'ALBUM_ID'/photos?access_token=AAAEzcP64ySABAA3YYxBzRlrtUn..............

在浏览器中我看到了这个:(为了安全起见,我删除了数字)

{
   "id": "ID NUMBER HERE", 
   "post_id": "POST ID NUMBER HERE"
}

我如何告诉 Facebook 将我重定向回我的页面。

我的代码是:

$app_id = APP_ID;
$app_secret = APP_SECRET;
$my_url = "MY_URL";
$page_id = "PAGE_ID"; // Set this to your APP_ID for Applications

$code = $_REQUEST["code"];

if(empty($code)) {
  // Get permission from the user to publish to their page. 
  $dialog_url = "http://www.facebook.com/dialog/oauth?client_id="
    . $app_id . "&redirect_uri=" . urlencode($my_url)
    . "&scope=publish_stream,manage_pages";
  echo('<script>top.location.href="' . $dialog_url . '";</script>');
} else {

  // Get access token for the user, so we can GET /me/accounts
  $token_url = "https://graph.facebook.com/oauth/access_token?client_id="
      . $app_id . "&redirect_uri=" . urlencode($my_url)
      . "&client_secret=" . $app_secret
      . "&code=" . $code;
  $access_token = file_get_contents($token_url);

  $accounts_url = "https://graph.facebook.com/me/accounts?" . $access_token;
  $response = file_get_contents($accounts_url);

  // Parse the return value and get the array of accounts we have
  // access to. This is returned in the data[] array. 
  $resp_obj = json_decode($response,true);
  $accounts = $resp_obj['data'];



  // Find the access token for the page to which we want to post the video.
  foreach($accounts as $account) {
       if($account['id'] == $page_id) {
         $access_token = $account['access_token'];
         break;
       }
  }

  $ALBUM_ID = "ALBUM_ID";

      // Show photo upload form to user and post to the Graph URL
      $image_post = "https://graph.facebook.com/" . $ALBUM_ID . "/photos?"
      . "access_token=" .$access_token;

        $video_post = "https://graph-video.facebook.com/" . $page_id . "/videos?"
      . "title=testTitle" . "&description=testDescription"
      . "&access_token=". $access_token;

?>
  <table align="center">
             <tr>                                                                                                 
                 <td>

                     <?php
         echo '<html><body>';
         echo '<form enctype="multipart/form-data" action="'
         .image_post.' "method="POST">';
         echo 'Please choose a photo: ';
         echo '<input name="source" type="file"><br/>';
         echo 'Say something about this photo: <br/>';
         echo '<textarea id="fbText" name="message" 
             rows="4" cols="47">';
         echo '</textarea><br/><br/>';
         echo '<input type="submit" value="Upload"/><br/>';
         echo '</form>';
         echo '</body></html>';
      }
          ?>
                 </td>

             </tr>
  <?php

我已经尝试添加&redirect_uri=" . urlencode($my_url)到,$image_post但这并没有改变行为中的任何内容,并将我重定向到同一页面而不返回。

谢谢。

4

1 回答 1

1

在我看来,您有 3 个选项:

1. 这仅在您不关心来自 facebook 的响应时才有效:

<iframe name="uploader" onLoad="locationChange(this)"></iframe>

<form method="POST" action="..." target="uploader">
...
</form>

funnction locationChange(ifrm) {
    console.log("iframe location has changed to: ", ifrm.src);
}

这样做的问题是,如果上传失败,您将不会意识到,这意味着您无法区分成功的上传和失败的上传。
您无法从 iframe 读取数据的原因是您的页面与 iframe 的域不同,并且在这种情况下浏览器会由于相同的源策略而阻止通信。

2. 将图像上传到您的服务器,然后从 php 将图像上传到 facebook。
您可以使用这个:使用 Facebook 的 Graph API 将照片上传到相册

3. 您可以使用 ajax 上传图片,有一些技巧,例如:Ajax Image Upload without Refreshing Page using Jquery

于 2012-06-27T19:07:01.393 回答