Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following code:

      public void CheckAuthorization()
    {

        string app_id = "";//Your id here
        string app_secret = "";//your secret key
        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('&'))
                {

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



        }


    }

Using this code , I can post to my profile using the line

        client.Post("me/feed", new { message="Hi"});

How can I go about posting on other profiles?

share|improve this question

1 Answer

up vote 2 down vote accepted

Try this:

client.Post("/PROFILE_ID/feed", new { message="Hi"});

More info: https://developers.facebook.com/docs/reference/api/#publishing

share|improve this answer
Thanks for the great link...!! – Bhushan Firake Dec 11 '12 at 16:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.