1

我成功地使用以下格式对 Facebook 帖子发表评论:

fb.Post("owner_id" + "_" + "post_id" + "/comments", message). 

但用于 facebook 照片(例如:this

fb.Post("362298920480255_423909524319194/comments",message);

我收到了这个错误:#100 : error finding the requested story.

我怎样才能解决这个问题?

我正在使用 .Net 4.0 和 Facebook c# sdk v6。

4

1 回答 1

2

试试这个,我使用它,到目前为止效果很好。

 var commentDicitonay = new Dictionary<string, object>
                                       {
                                           {"id", "your post_id"}, 
                                           {"from", accessToken}, 
                                           {"message", description}
                                       };
    facebookClient.Post("/comments", commentDicitonay);

您是否使用此权限“user_photos”?

于 2012-08-09T18:05:43.970 回答