好吧,我正在尝试制作一个应用程序来用 C# 向 facebook 写评论。在谷歌搜索我知道我需要一个应用程序(我做到了),我需要选择权限。我做到了.. 现在我用 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("OBJECT_ID/comments", data);
}
但是当我单击按钮时,我收到此错误:
(OAuthException) (#200) 用户必须接受 TOS
我快疯了!请帮帮我=(