0

Mention Tagging: http://developers.facebook.com/docs/opengraph/mention_tagging/

Here is my code:

NSURL *requestUrl = [NSURL URLWithString:[NSString stringWithFormat:@"https://graph.facebook.com/me/feed?access_token=%@",self.fbAccessToken]];

...

[self.fbRequest  setPostValue:@"hi, @[555066305] "  forKey:@"message"];

But it's not working.It just print "hi, @[555066305] " instead of "hi,@somebody".

Patrick
  • 262
  • 3
  • 12

1 Answers1

1

For a start, you're posting to /feed when the tagging / mentions is an Open Graph feature, not a feed post feature.

Secondly, the action type needs to be approved in order to use mentions in the message part, which is mentioned in the documentation along with all the other requirements

Igy
  • 43,710
  • 8
  • 89
  • 115
  • What should I do,if I wanna upload a picture with mention tagging in the description? – Patrick Aug 24 '12 at 05:45
  • You can use mention tagging in an open graph action which also has a picture attached, but not on a regular photo upload – Igy Aug 24 '12 at 16:04