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 am using the faceabook php SDK in order to login users to my website. Now I tested this application several time on my computer and every thing is working just fine. I just tried to login to the website from my brother computer to test the login system. I got this error.

An error occurred with XXXXX. Please try again later.

in my code I am not using any redirect_uri

<?php
require_once('scripts/facebook.php');
$config = array('appId' => 'xxx','secret' => 'xxx');
$permissions = array('scope'=>'publish_stream,email,offline_access,user_birthday');
$facebook = new Facebook($config);
$user_id = $facebook->getUser(); 

            if($user_id) {
                try {

            $user_profile = $facebook->api('/me','GET');
            header('Location:'.$_COOKIE['link']);
                    } catch(FacebookApiException $e) {
                        $login_url = $facebook->getLoginUrl($permissions); 
                        echo '<img src="assets/login.png">';
                        echo '<a href="' . $login_url . '"><img src="assets/facebook_login.png"></a><br>';
                        error_log($e->getType());
                        error_log($e->getMessage());
          }   
        } else { //if there user id
            $login_url = $facebook->getLoginUrl($permissions);
            echo '<img src="assets/login.png"><br>';
            echo '<a href="' . $login_url . '"><img src="assets/facebook_login.png"></a>';


    }
?>

any ideas how to fix this problem ?

share|improve this question
Is the url that this script is running in and the url specified in the Facebook App settings are the same? – Eswar Rajesh Pinapala Jun 20 '12 at 5:56
Are u using codeigniter? – Sam Arul Raj Jun 20 '12 at 6:05
Have you specified the domain of your app in App domain in the app dashboard developers.facebook.com/apps?? – Virendra Rajput Jun 20 '12 at 6:09
@ Eswar Rajesh Pinapala No, the url that I have on facebook is: www.mywebsite.com but the script is running from www.mywebiste.com/login.php. I will change it and see. – Saad Alhly Jun 20 '12 at 6:11
I just changed the app domain from www.mywebsite.com to www.mywebsite.com/login.php and the problem still the same. – Saad Alhly Jun 20 '12 at 6:16
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.