I'm building a Web app where I want to implement the Facebook login on it. The application connects to my own API. The thing is that the app is completely AJAX, and I don't want to have to check the $facebook->api('/me') at every single REST query in the API, but I want it to be secure.
Here's the workflow: 1. User comes to page (or refreshes page), Facebook PHP SDK checks if user is logged in. If not it will display the Log In button. 2. User clicks on Facebook log in button: popup login with Facebook Javascript SDK. If it is a success, pages reload (back to number 1).
I want to make sure when a user disconnects from Facebook, and even more if the user disallows the application to access his data, that if we reload my web Application, the Facebook PHP SDK will return that the user is not logged in.
Thank you very much guys, J