i am working on asp.net mvc3 and i am using facebook c# sdk to post on fb wall . i get following error while trying to post on wall.
(OAuthException) (#200) The user has not granted the application the permission to automatically publish feed stories
please see the code i used .
string appAccessToken = "accessstoken"; //this token i got after creatting app in fb developer.
FacebookClient fb = new FacebookClient(appAccessToken);
Dictionary<string, object> parameters = new Dictionary<string, object>()
{
{"description", "Testbeskrivning"},
{"link", ""},
{"name", "Testtitel" }
};
fb.Post("myfbid/feed", parameters);