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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.