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;
}
