I'm using the C# Facebook library. With that i wanted to post something on my own wall, but i'm getting an error (as described in the title):
(OAuthException) (#803) Some of the aliases you requested do not exist: access_token=438781769472xxxxxxxxxxxxxxxxxx
This is what i'm doing in code:
FacebookClient facebookClient = new FacebookClient(myAccessToken);
var args = new Dictionary<string, object>();
args["message"] = "Test message";
args["caption"] = "Caption";
args["description"] = "Description";
args["name"] = "Name";
args["picture"] = "";
args["link"] = "";
// Not sure which one to use, but both give same error
facebookClient.Post(appAccessToken+"/feed", args);
//facebookClient.Post(appAccessToken, args);
Anyone any idea what the problem might be and how i can solve this??