I am trying to write a C# desktop/forms application which reads a user's timeline and/or newsfeed.
I have created an app for the user and have used the access token tool to generate an access code for the app/user.
This code worked OK a few days ago
var accessToken = "<user token goes here>";
var client = new Facebook.FacebookClient(accessToken);
dynamic me = client.Get("me");
string tz = me["timezone"].ToString();
But today I have this error OAuthException - #190 Error validating access token: Session has expired
From the token tool (https://developers.facebook.com/tools/accesstoken/) I cannot see how to extend the token lifespan. Nor can I delete it to create a new one,
- Is there a way to refresh or recreate my own token from a C# desktop application
- Assuming 1 is possible can anyone point me in the right direction on how I go about reading my timeline and/or newsfeed.
Thanks in advance!