I am using Graph api to communicate with facebook. I am getting browser error like This webpage has a redirect loop.This is my code. Please give suggestion to fix this
<?php
include_once 'facebook.php';
$facebook = new Facebook(array(
'appId' => '3896949210XXXX',
'secret' => 'c85b7e0f7XXXXXXXXd3a614aecaf',
'cookie' => true
));
$user = $facebook->getUser();
if($user)
{
}
else
{
$login_url_params = array(
'scope' => 'publish_stream,read_stream,manage_pages',
'fbconnect' => 1,
'redirect_uri' => 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']
);
$login_url = $facebook->getLoginUrl($login_url_params);
header("Location: {$login_url}");
exit();
}
?>