I was developing a app, friends whom you chat the most, so I wrote the following code to login to that application, but when I try to hit the login url, i get the following error message inside facebook oath permissions dialog page:
An error Occured, please try again.
The code I wrote is here:
<?php
require("facebook.php");
require("settings.php");
$facebook=new Facebook(array('app_Id'=>$app_id,'secret'=>$secret,'cookie'=>true));
$user=$facebook->getUser();
if($user)
{
var_dump($user);
}
else
{
$login_url = $facebook->getLoginUrl(array("scope"=>"read_mailbox"));
echo "<a href='$login_url'>Login</a>";
echo $login_url;
}
?>
the url to my testing app is: www.cyberkiller.freeserver.me What may be the error in the app?

