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 am trying to post a message on my wall and wanted to tag multiple users at a time in this post. I tried the various options on the FB post page but couldn't do it. May be I am not doing it right. Any help is appreciated and this is how I am doing it...

NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                               @"Test 2",@"message",
                               @"100004311843201,1039844409", @"to",
                               nil];
[self.appDelegate.facebook requestWithGraphPath:@"me/feed" andParams:params andHttpMethod:@"POST" andDelegate:self];

I have also tried message_tags but that doesn't seem to work as well.

share|improve this question

1 Answer

You would need to use Open Graph to tag people with a message. The me/feed Graph API endpoint doesn't support this.

Mentions Tagging https://developers.facebook.com/docs/technical-guides/opengraph/mention-tagging/

Action Tagging: https://developers.facebook.com/docs/technical-guides/opengraph/publish-action/

You can take a look at the Scrumptious sample app that comes included with the latest Facebook SDK for iOS to see how to do this.

share|improve this answer

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.