Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to post a feed and attach the friend by "with_tags". But no matter I use NSArray or NSDictionary, it always report such error [NSArrayM length]: unrecognized selector sent to instance 0x683ee50 or NSDictionary length. My code is as below

    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];

Hope someone can help on this. Many thanks.

share|improve this question

1 Answer

up vote 0 down vote accepted

I'm trying to post a feed and attach the friend by "with_tags".

That’s not a valid parameter when making a post – it’s field of the post object, when you read it from the API.

To make a post with tags, you have to use the tags parameter – as described here: https://developers.facebook.com/docs/reference/api/user/#posts

share|improve this answer
many thanks..but it seems not work. could you please provide some sample code? – Ray86 Oct 5 '12 at 6:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.