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);