0

我正在尝试通过“with_tags”发布提要并附加朋友。但是无论我使用 NSArray 还是 NSDictionary,它总是会报告这样的错误 [NSArrayM length]: unrecognized selector sent to instance 0x683ee50 或 NSDictionary 长度。我的代码如下

    for(id<FBGraphUser> user in fbFriendPickerController.selection){
            NSDictionary *userDic = [[NSDictionary alloc]initWithObjectsAndKeys:user.id,@"id",user.name,@"name", nil];
            [data setObject:userDic forKey:@"data"];
        }
NSDictionary *param = [[NSDictionary alloc]initWithObjectsAndKeys:@"test",@"message", data,@"with_tags",nil];

希望有人可以在这方面提供帮助。非常感谢。

4

1 回答 1

0

我正在尝试通过“with_tags”发布提要并附加朋友。

在发布帖子时,这不是一个有效的参数——当你从 API 中读取它时,它是帖子对象的字段。

要发布带有标签的帖子,您必须使用参数tags- 如此处所述:https ://developers.facebook.com/docs/reference/api/user/#posts

于 2012-09-27T08:55:54.120 回答