I have a user "A" who has come to my site,he logs in with facebook and a full set of permissions.
He answers a question on my site, and then I want to post his answer to hos friend's wall on facebook - friend "B", and so a notification is triggered for friend "B" within Facebook that friend "A" has posted on his wall.
In fact, we are sharing links using the Open Graph.
Here is example of my code how I do this:
JavaScriptSerializer sr = new JavaScriptSerializer();
Dictionary<string, object> result = new Dictionary<string, object>
{{"link", "{some http address here}"},
{"from", sr.Serialize(GetFrom())},
{"with_tags", sr.Serialize(GetTo())}};
FacebookClient fbClient = new FacebookClient(accessToken);
fbClient.PostCompleted += FbClientPostCompleted;
fbClient.PostTaskAsync("/{my ID}/feed", parameters);
A posts a link on my wall, in friend's wall link also visible, but notification is not generated within Facebook for user "B".
I'm use Application Access Token.
Question: How I can make post on FB with notification for my friends who tagged to this post.