I currently have a Javascript that enables me to identify the three states of the user visiting my site:-
- Not logged in to Facebook
- Logged in to Facebook but not connected to my app
- Logged in to Facebook and connected to my app
This is great and works wonderfully, except that I have three different bits of content to be displayed for the three types of status and currently we load all three states into the DOM and use jQuery to display the correct version as soon as the status of the user is understood.
Loading three different content types only to ever display one is not a very good way of doing things. I have two options:-
- Use the Facebook SDK to get the same information server side
- Use AJAX to load the correct content
So, my question: Is it possible to determine the three states that I've listed above using the Facebook PHP SDK?
FB.getLoginStatus(function(response) {
if (response.authResponse) {
FB.api('/me', {accessToken: response.authResponse.accessToken}, function(user) {
//connected to the app
});
} else {
if (response.status == "not_authorized") {
// logged in but not connected
} else {
// not connected to Facebook
}
}
});
Any help on this much appreciated because I'm a bit stumped after many hours of trying.