Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

2 Answers

up vote 0 down vote accepted

Should be appID not app_ID:

Incorrect:

$facebook=new Facebook(array('app_Id'=>$app_id,'secret'=>$secret,'cookie'=>true));

Correct:

$facebook=new Facebook(array('appId'=>$app_id,'secret'=>$secret,'cookie'=>true));
share|improve this answer

Please check the redirect given in your app and the redirect url given in your code, IT SHOULD BE SAME

It says the redirect url after loign

It will be given as Site URL: in your app edit page

Also check your app credentials

Use graph API it is simple.

share|improve this answer
ya, when i fixed the first error, it told: An error occurred. Please try again later. API Error Code: 191 API Error Description: The specified URL is not owned by the application Error Message: Invalid redirect_uri: Given URL is not allowed by the Application configuration. Where do i have to give this redirect_uri? I cannot find the application configuration... – Nicholas Wild Jan 25 at 5:27
facebook.com/dialog/… this page says that app dont own the redirect url – Nicholas Wild Jan 25 at 5:33
ok, the problem is solved, the problem was on doing, mydomain.com and simply mydomain.com – Nicholas Wild Jan 25 at 5:44
i am sorry.. i was not here..:D – Prasanth Bendra Jan 25 at 5:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.