I'm trying to post to a facebook page, as the page and I'm having problems.
When I run this I get:
Facebook.FacebookOAuthException: (OAuthException - #200) (#200) User does not have sufficient administrative permission for this action on this page
I believe I need a User Access Token and not an Application Access Token. Examples online are showing exchanging a "code" for a token. I currently have no way of retrieving this "code".
This process seems incredibly complicated for a such a simple task. Am I missing something here?
Do I need a User Access Token? How can I get this token assuming this code is in a Windows Service and cannot prompt the User.
const string applicationId = "114810611889734";
const string applicationSecret = "*** SECRET ***";
const string pageId = "102661313114041";
var client = new FacebookClient();
dynamic token = client.Get("oauth/access_token", new
{
client_id = applicationId,
client_secret = applicationSecret,
grant_type = "client_credentials"
});
client.AccessToken = token.access_token;
dynamic parameters = new ExpandoObject();
parameters.title = "test title";
parameters.message = "test message";
var result = client.Post(pageId + "/feed", parameters);