In the website that I am building, I need to check whether or not the user is logged in to facebook. I have two possibilities. I can either do it on the server side, using PHP code like following:
$facebook = new Facebook(array(
'appId' => _FACEBOOK_APP_ID,
'secret' => _FACEBOOK_SECRET,
'cookie' => true));
$me = $facebook->api("/me");
if (isset($me["id"]) {
// User is logged in.
} else {
// User is not logged in.
}
Alternatively, I can do it on the client side, using javascript like following:
FB.getSession();
if (session != null) {
// User is logged in.
} else {
// User is not logged in
}
I am wondering what are the pros and cons of the two approaches.