I am having login using facebook functionality in my site. The issue is after getting successful authentication the $facebook->getUser() method returning 0, due to this it's not preceding towards the rest of code. To resolve this issue I modified my APP ID and Secret Key, also I created new APP but still its not working. Also did lot of stuff on google but didn't got any success.
Following is my code :
public function facebookregisterAction() {
require 'auth/src/facebook.php';
$facebook = new Facebook(array('appId' => 'xxxxxxxxxxxxxxx','secret' => 'xxxxxxxxxxxxxxxxxxxxxxx','cookie' => true));
$session = new Zend_Session_Namespace('user');
$user = $facebook->getUser();
if ($session->islogout != 1) {
if ($user) {
try {
$user_profile = $facebook->api('/me');
}catch(Exception $e){}
}
}
Thanks