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'm using the Facebook C# SDK to post items to the wall. I can post to the user's wall itself as the user, I can post to the group page / fan page but it appears as it comes from the admin and not the application. What I want to do is have the post appear as if it came from the application and not the admin - what am I doing wrong?

I request the following permissions: publish_stream,manage_pages,offline_access

Here is a code snippet:

                var fb2 = new FacebookOAuthClient(FacebookApplication.Current);
            dynamic resultt = fb2.GetApplicationAccessToken();
            var appAccessToken = resultt.access_token;


            dynamic parameters = new ExpandoObject();
            try
            {
                parameters.access_token = appAccessToken;
                parameters.link = "http://www.msn.com";
                parameters.picture = "";
                parameters.name = "TEST";
                parameters.caption = "Test!";
                parameters.description = "Just another test.";
                parameters.from = AppID; 
                parameters.to = PageID;
                parameters.actions = new
                {
                    name = "TEST",
                    link = "http://www.msn.com",
                };

                FacebookClient appp = new FacebookClient(appAccessToken);
                var result = appp.Post("/" + AppID + "/feed", parameters);
share|improve this question

1 Answer

up vote 1 down vote accepted

After reading through the facebook documentation and the post here, I got it figured out.

Basically after getting the access_token from the accounts for the page id, you can post as the page itself.

share|improve this answer

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.