(OAuthException) (#200) User must have accepted TOS on C# - Facebook
问题 Well, I am trying make a app to write comments to facebook in C#. Searching in google I know that I need an Application (I did it) and I need select the permissions. I did it.. Now I wrote my code in C#: private string MyAppId = "XXX"; private string MyAppSecret = "XXX"; private void button1_Click(object sender, EventArgs e) { FacebookClient FB = new FacebookClient(MyAppId, MyAppSecret); Dictionary<string,string> data = new Dictionary<string,string>(); data.Add("message","test"); FB.Post(