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.

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".

share|improve this question

1 Answer

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

share|improve this answer
What should I do,if I wanna upload a picture with mention tagging in the description? – Patrick Aug 24 '12 at 5:45
Start checking the Open Graph docs. – CBroe Aug 24 '12 at 8:40
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

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.