2
$photo_details = array(
        'message'=> $image->description().' '.$site_adr.$image->id().'/'.cleanSEOstring(strtolower(trim($image->title()))).'-cover-photo',
        'redirect_uri'=> 'http://www.exampleurl.com',
        'scope'=>'publish_stream');
$photo_details['image'] = '@' . realpath($photo);
    try
    {
        $upload_photo = $facebook->api('/'.$album_uid.'/photos', 'POST', $photo_details);
        @unlink($file);
        header('location:https://www.facebook.com/profile.php?id='.$userMe['id'].'&v=wall');
    }
    catch(FacebookApiException $e)
    {
        header('location:http://www.somethingwentwrong.com');
    }

它仍然重定向到somethingwentwrong.com,我做错了什么吗?

如标题中所述的异常是“发生了未知错误”,这是它在 catch 语句中返回的对象:

object(FacebookApiException)#5 (7) { ["result:protected"]=> array(1) { ["error"]=> array(3) { ["message"]=> string(30) "An unknown error has occurred." ["type"]=> string(14) "OAuthException" ["code"]=> int(1) } } ["message:protected"]=> string(30) "An unknown error has occurred." ["string:private"]=> string(0) "" ["code:protected"]=> int(0) ["file:protected"]=> string(48) "/var/www/mysite/fb-sdk/base_facebook.php" ["line:protected"]=> int(1106) ["trace:private"]=> array(4) { [0]=> array(6) { ["file"]=> string(48) "/var/www/mysite/fb-sdk/base_facebook.php" ["line"]=> int(810) ["function"]=> string(17) "throwAPIException" ["class"]=> string(12) "BaseFacebook" ["type"]=> string(2) "->"
4

2 回答 2

3

找出异常错误消息是什么。所以做这样的事情:

} catch {
  error_log('caught exception: '. $e);
  header('location:http://www.somethingwentwrong.com');
}

如果你得到OAuthException: (#803) Some of the aliases you requested do not exist然后确保 $album_uid 是一个字符串而不是一个 int。

还要确保用户已授予您的应用user_photos权限。异常错误信息会告诉你。

如果您尝试将照片发布到 FB 页面,则需要使用页面访问令牌。

您的代码看起来不错,除了我认为'scope'并且'redirect_uri'不会对 Graph API 调用做任何事情。

于 2012-09-13T02:49:20.077 回答
2

我不认为这是你的错。我最近看到了一个非常相似的问题,照片上传失败并出现“发生未知错误”。这在我们所有的客户帐户中随机发生,但最常见的是两个帐户(80-90% 的上传失败)。有时重试上传会解决问题,但通常也会失败。

我已于 9 月 13 日在 Facebook 开发者专区开票。请添加您的复制品,以便获得牵引力。

http://developers.facebook.com/bugs/258628444257212?browse=search_50688f593127e2295697196

于 2012-09-30T18:46:46.950 回答