(OAuthException - #200)(#200)用户未授权应用程序执行此操作

时间:2014-08-12 13:57:06

标签: facebook facebook-c#-sdk facebook-sdk-4.0

我正在尝试facebook api。我收到此错误,我无权执行此操作。我接受了运行该程序时出现的所有弹出窗口。有人为此快速解决了问题吗?

sing Facebook;



        public void CheckAutorization()
        {
            string app_Id = "xxxxxxxxxxxxxxx";
            string app_secret = "yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy";
            string scope = "publish_stream, manage_pages";

            if (Request["code"] == null)
            {
                Response.Redirect(string.Format(
                    "https://graph.facebook.com/oauth/authorize?client_id={0}&redirect_uri={1}&scope={2}",
                    app_Id, Request.Url.AbsoluteUri, scope));
            }
            else
            {
                Dictionary<string, string> tokens = new Dictionary<string, string>();

                string url = string.Format("https://graph.facebook.com/oauth/access_token?client_id={0}&redirect_uri={1}&scope={2}&code={3}&client_secret={4}",
                    app_Id, Request.Url.AbsoluteUri, scope, Request["code"].ToString(), app_secret);

                HttpWebRequest request = WebRequest.Create(url) as HttpWebRequest;

                using (HttpWebResponse response = request.GetResponse() as HttpWebResponse)
                {
                    StreamReader reader = new StreamReader(response.GetResponseStream());

                    string vals = reader.ReadToEnd();

                    foreach (string token in vals.Split('&'))
                    {
                        //meh.aspx?token1=steve&token2=jake&...
                        tokens.Add(token.Substring(0, token.IndexOf("=")),
                            token.Substring(token.IndexOf("=") + 1, token.Length - token.IndexOf("=") - 1));
                    }
                }

                string access_token = tokens["access_token"];

                var client = new FacebookClient(access_token);

                client.Post("/me/feed", new { message = "Is there anyone out there? :) Can i get a whoop whoop" });
            }
        }
    }
}

1 个答案:

答案 0 :(得分:2)

必须更改范围字符串范围=&#34; publish_stream,manage_pages&#34;字符串scope =&#34; publish_stream,publish_actions&#34 ;;