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 found I can mention friends directly on Facebook by @[userId:userName] but it does not work when posting from Graph console or my app via the Facebook Graph API.

To write a post I use

FacebookClient facebookClient = new DefaultFacebookClient(token);
Post post = facebookClient.publish("me/feed", Post.class, Parameter.with("message", "ola que ase!! @[userId:userName]"));

but it leaves an empty blank space instead of the mention. How do I use this feature with Graph?

share|improve this question
β€œIs that feature available in Graph?” – have you done any research on this of your own? It is not possible in standard posts made via API, only in Open Graph actions. – CBroe Jan 31 at 16:01

1 Answer

I tried to find it by myself, I found the doc page but it was not so clear

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

That says you can mention just by adding the tag to the inline message, but I will re-read it again.

Thanks

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.