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?
