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'm posting straight from my website to my facebook wall. Alright. The problem is that my publication does not appear in the timeline of my friends, they can only view my publication is accessing my wall. In a normal publication via my friends facebook wall view in them. Notification. Follow my code.

private static dynamic PostToFacebookWall(string token, string message, long facebookId)
{
    var FbApp = new FacebookClient(token);
    IDictionary<string, object> postArgs = new Dictionary<string, object>();
    postArgs["message"] = "test";
    postArgs["description"] = "test description";
    postArgs["name"] = "test name";
    postArgs["link"] = "http://www.cityto.us/Divulgar-Servico-Festas-e-Eventos-Jo-Fantasias-%E2%80%93-Aluguel-de-Fantasias/a/34/78";
    postArgs["privacy"] = new { value = "EVERYONE" };
    if (token != null) postArgs["access_token"] = token;
    postArgs["uid"] = facebookId;
    var result = FbApp.Post("/" + facebookId + "/feed", postArgs);
    return result;
}
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.