没有足够的权限代表观众发布到目标

时间:2014-08-18 10:39:26

标签: c# facebook facebook-graph-api

我有以下代码:

private void CheckAuthorization()
        {
            string app_id = "x";
            string app_secret = "x";
            string scope = "publish_stream,publish_actions";

            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 = "A simple test" });

                var args = new Dictionary<string, object>();
                args["message"] = "abc";
                args["caption"] = "This is caption!";
                args["description"] = "This is description!";
                args["name"] = "This is name!";
                args["picture"] = "picutre";
                args["link"] = "http://www.bradspel.net/";

                client.Post("/1418771281723422/feed", args);

            }
        }

发布时我得到了这个:

  

(OAuthException - #200)(#200)发布到的权限不足   代表观众的目标

如果我将client.post更改为:

client.Post("/me/feed", args);

它运作得很好。

那么,当我即将张贴到特定的墙上时,为什么这不起作用?我在这个Facebook页面上设置了权限,让大家发帖。 Facebook应用程序设置为在线。

2 个答案:

答案 0 :(得分:7)

通过创建扩展页面令牌并使用它来发布帖子一切正常。请参阅:How to get Page Access Token by code?

我很惊讶这个简单的任务很难开始运行,并且获得的帮助很小。

答案 1 :(得分:0)

在发布到网页时(与您自己的墙相对),我们的测试显示您不必像品牌页面发帖,但您必须发布查看权限“朋友”或更好(例如Public)以避免此异常。是的,您需要您的用户授予publish_actions。