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" });
            }
        }
    }
}
4

1 回答 1

2

必须将范围字符串 scope = "publish_stream, manage_pages" 更改为 string scope = "publish_stream, publish_actions";

于 2014-08-15T07:29:16.167 回答