Facing issue while trying to Comment on a Post Facebook in MVC3

故事扮演 提交于 2019-11-28 14:05:53

问题


I am trying to send the reply to a Facebook Post.

Below is my action method

public ActionResult GetMyDetails()
{
    var fb = new Facebook.FacebookClient("appId", "appSecret");
    dynamic obj = fb.Post(
                          "https://facebook.com/
                           PostID/
                           comments/?message=ws&access_token=" + fb.AccessToken
                         );
}

Query - I basically want to know, why A comment on Post using the above code is not working ?

来源:https://stackoverflow.com/questions/15740168/facing-issue-while-trying-to-comment-on-a-post-facebook-in-mvc3

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!