Having the access token, how do I post to a Facebook wall. I tried this:
var postparameters = new Dictionary<string, object>();
postparameters["message"] = message;
postparameters["name"] = "This is a name";
_fbClient = new FacebookClient(accessToken);
var result = _fbClient.Post("/me/feed", postparameters);
But it gives me this exception:
(OAuthException) Error validating access token: Session has expired at unix time
Why is this happening?