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'd like to post on user's wall from my iOS app. The message I am posting may contain another user's name as a link (same as when we use @ on facebook). This is my code:

NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                            [NSString stringWithFormat:@"This is my message @[%@:1:%@]", facebookManager.userId,facebookManager.userName], @"message",nil];

but this code doesn't work. Does any one know if graph api supports @mention? I didn't find a document to negate it.

share|improve this question
1  
possible duplicate of How to post in Facebook with @mention ability using stream.publish? – Igy Jul 13 '12 at 8:55

1 Answer

up vote 1 down vote accepted

No, it does not support that.

There are several older questions regarding that topic here on SO, but they all come to the conclusion that it is not possible.

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.