I am building a new addition to our own cms, where users can auto post any new blog post (could also be used for other stuff as well) to facebook. So, i successfully added the javascript sdk, added a login button, i am getting the access token back and with it i am populating a selection of pages where the user had admin rights to post to. Selecting any of the pages will auto post the blog post, so everything works fine except when you try and visit the site again after you have been logged out of facebook. My code is looking for the token and if it is there, it will try and populate the list of pages, but if someone is not logged into the facebook account when visiting the page, he will not be authenticated, so i cannot retrieve the list of pages.
Given i have the token, what should i do to essentially "autheticate" as the user again? Is the token alone enough?
For all of you using mailchimp, they use the very same system and i never have to login again.. Tried different stuff like the login function of the facebook javascript api but nothing. I am still not logged in as the user.
I am using the facebook c# sdk for the server side code (storing the token and posting to facebook) but using the javascript api for the login and retrieval of the pages list.