I am trying to access my Facebook account with an App access code (because I want indefinate access - I do not want an access code which can expire)
I have tried the following code using AppId and AppSecret (which are valid) :
string accesstoken = m_AppId & "|" & m_AppSecret;
Facebook.FacebookClient fb = new Facebook.FacebookClient(accesstoken);
Facebook.JsonObject fbMe = (Facebook.JsonObject)fb.Get("me");
and the last line throws an exception stating
OAuth Exception #2500 An active access token must be used to query information about the current user."
What am I doing wrong here ?