I am now testing for the c# facebook and come across for the following error:
Here is the code:
FacebookApp app = new FacebookApp();
Authorizer authorizer = new Authorizer(app);
System.Diagnostics.Debug.WriteLine(app.Session);
if (authorizer.IsAuthorized())
{
Response.Write("userid:" + app.UserId + "<br/>");
var me = (IDictionary<string, object>) app.Get("me");
foreach (string key in me.Keys)
{
Response.Write(key +":" + me[key]+"<br/>");
}
}
}
The code work fine when login to the facebook. However, when i try to logout thur the facebook web and try to access the page again, the line app.get("me") will throw acception (OAuthException) Error validating access token and the app.session is still valid.
Anything i did wrong and make the authorizer.IsAuthorized call return true even logout from facebook?
Thanks