I am running asp.net application on Facebook,which has multiple pages. On landing page I obtain access token. Question is how to persist that access token so that I can use it in other pages to access current user data. Current when I try following in other pages,
Facebook.FacebookAPI fbApi = new Facebook.FacebookAPI();
JSONObject currentUser = fbApi.Get("/me");
it breaks saying unauthorized.