0

我在尝试在朋友墙上发布 UIImage 时使用最新的 Facebook iOS SDK 3.1.1,我收到错误 5(错误:HTTP 状态代码:403)。

如果我尝试将图像张贴在我的墙上,它的效果很好,但不是我的一个朋友。

我的代码: 1. 在发布之前,我正在检查用户是否具有正确的权限,当他这样做时,我正在制作

-(void)postImageOnFriendsWall:(UIImage*)image FriendsArray:(NSArray*)friends
{
    // if we don't have permission to announce, let's first address that
    if ([FBSession.activeSession.permissions indexOfObject:@"publish_actions"] == NSNotFound)
    {

    [FBSession.activeSession reauthorizeWithPublishPermissions:[NSArray arrayWithObject:@"publish_actions"]
                                               defaultAudience:FBSessionDefaultAudienceFriends
                                             completionHandler:^(FBSession *session, NSError *error)
     {
         if (!error)
         {
             // re-call assuming we now have the permission
             [self postImageOnFriendsWall:image FriendsArray:friends];

         }
         else
         {
             UIAlertView *alertView = [[UIAlertView alloc]  initWithTitle:@"Error"                        message:error.localizedDescription                                                                                                delegate:nil                                                                                         cancelButtonTitle:@"OK"
                                                        otherButtonTitles:nil];
             [alertView show];
         }

     }];
}
else
{

    // can post image
    for (id<FBGraphUser> user in friends)
    {


        NSString *userID = user.id;
        NSLog(@"trying to post image of %@ wall",userID);
        NSMutableDictionary  *postVariablesDictionary = [[NSMutableDictionary alloc] init];
        [postVariablesDictionary setObject:UIImagePNGRepresentation(image) forKey:@"picture"];
        [postVariablesDictionary setObject:@"my image" forKey:@"message"];

        [FBRequestConnection startWithGraphPath:[NSString stringWithFormat:@"%@/photos",userID] parameters:postVariablesDictionary HTTPMethod:@"POST" completionHandler:^(FBRequestConnection *connection, id result, NSError *error)
         {
             if (error)
             {
                 //showing an alert for failure
                 UIAlertView *alertView = [[UIAlertView alloc]  initWithTitle:@"Facebook" message:error.localizedDescription                                                                                                delegate:nil   cancelButtonTitle:@"OK"              otherButtonTitles:nil];
                 [alertView show];
             }
             else
             {
                 //showing an alert for success
                 UIAlertView *alertView = [[UIAlertView alloc]  initWithTitle:@"Facebook" message:@"Shared the photo successfully"                                                                                                delegate:nil   cancelButtonTitle:@"OK"              otherButtonTitles:nil];
                 [alertView show];
             }
         }];



    }
}
}

提到,如果我改变

startWithGraphPath:[NSString stringWithFormat:@"%@/photos",userID]

startWithGraphPath:[NSString stringWithFormat:@"me/photos",userID]

它工作正常。

我究竟做错了什么?我一直在寻找答案,但没有任何帮助。谢谢!

4

2 回答 2

2

发生这种情况是因为您的权限级别不足。正如 FB 文档所说:

Insufficient_scope 该请求需要比访问令牌提供的权限更高的权限。资源服务器应该以 HTTP 403(禁止)状态代码响应,并且可以包含“范围”属性以及访问受保护资源所需的范围。

您必须获得高级权限才能发布到其他用户的墙。您需要的权限是 @"publish_stream",它“使您的应用能够将内容、评论和喜欢发布到用户的流和用户朋友的流中。这是一个超集发布权限,还包括 publish_actions。”(c)

最新的更改迫使您将所需的权限划分为两个级别 -基本允许您阅读有关用户的基本信息和高级(帖子等)以下是权限列表: 扩展权限列表

这意味着您必须分两个步骤请求适当的权限。先获得基础,再要求进阶。

于 2012-12-11T10:48:21.323 回答
0

您必须检查您的 facebook 应用程序 ID 有时会用它创建问题。因为我有同样的问题将墙发布到我的朋友墙但更改 facebook 应用程序 ID 并且它的工作完美。

于 2013-02-05T09:29:46.723 回答