我有一个帖子 ID,我想使用 c# 对该帖子发表评论。我正在使用 Facebook SDK 6.4.2。现在,在使用图形浏览器时,我可以发表评论
postid/comments?message=Commented using graph api explorer"
在c#中我正在做如下
var client = new FacebookClient(accesstoken);
var parameters = new Dictionary<string, object>
{
{ "message", "hi! this is my status message" },
{ "place",postid}
};
client.Post("me/feed", parameters);
它显示错误:(OAuthException - #1) 发生未知错误。