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 working with graph API and I am a little new to it.

I created an app and some people are able to use it while others get the following error :

Fatal error: Uncaught OAuthException: (#803) Some of the aliases you requested do not exist: 0 thrown in /home/public_html/base_facebook.php on line 1033

Can you people please help?

Here is how my fbmain.php looks like

This is how fbmain.php looks like

<?php
session_start();
    $fbconfig['appid' ]     = "2xxxxxxxx";
    $fbconfig['secret']     = "bxxxxxxxx";
    $fbconfig['baseurl']    = "http://xxx.com/facebook_login.php"; 
    if (isset($_GET['request_ids'])){
        //user comes from invitation
        //track them if you need
    }

    $user            =   null; //facebook user uid
    try{
        include_once "facebook.php";
    }
    catch(Exception $o){
        error_log($o);
    }
    // Create our Application instance.
    $facebook = new Facebook(array(
      'appId'  => $fbconfig['appid'],
      'secret' => $fbconfig['secret'],
      'cookie' => true,
    ));

    //Facebook Authentication part
    $user       = $facebook->getUser();



    $loginUrl   = $facebook->getLoginUrl(
            array(
                'scope'         => 'email,offline_access,publish_stream,user_birthday,user_location,user_work_history,user_about_me,user_hometown,manage_pages',
                'redirect_uri'  => $fbconfig['baseurl']
            )
    );

    $logoutUrl  = $facebook->getLogoutUrl();


    if ($user) {
      try {
        // Proceed knowing you have a logged in user who's authenticated.
        $user_profile = $facebook->api('/me');
      } catch (FacebookApiException $e) {
        //you should use error_log($e); instead of printing the info on browser
        d($e);  // d is a debug function defined at the end of this file
        $user = null;
      }
    }


    //if user is logged in and session is valid.
    if ($user){
        //get user basic description
        $userInfo           = $facebook->api("/$user");

        //Retriving movies those are user like using graph api
        try{
            $movies = $facebook->api("/$user/movies");
        }
        catch(Exception $o){
            d($o);
        }

        //update user's status using graph api
        //http://developers.facebook.com/docs/reference/dialogs/feed/
        if (isset($_GET['publish'])){
            try {
                $publishStream = $facebook->api("/$user/feed", 'post', array(
                    'message' => "Hello World!", 
                    'link'    => 'http://xxx.com',
                    'picture' => 'http://xxx.com/images/logo.png',
                    'name'    => 'Creative Advertising Solutions',
                    'description'=> 'I am glad to be an alpha tester at fanshala.com'
                    )
                );
                //as $_GET['publish'] is set so remove it by redirecting user to the base url 
            } catch (FacebookApiException $e) {
                d($e);
            }
            $redirectUrl     = $fbconfig['baseurl'] . '/index.php?success=1';
            header("Location: $redirectUrl");
        }

        //update user's status using graph api
        //http://developers.facebook.com/docs/reference/dialogs/feed/
        if (isset($_POST['tt'])){
            try {
                $statusUpdate = $facebook->api("/$user/feed", 'post', array('message'=> $_POST['tt']));
            } catch (FacebookApiException $e) {
                d($e);
            }
        }

        //fql query example using legacy method call and passing parameter
        try{
            $fql    =   "select name, hometown_location, sex, pic_square from user where uid=" . $user;
            $param  =   array(
                'method'    => 'fql.query',
                'query'     => $fql,
                'callback'  => ''
            );
            $fqlResult   =   $facebook->api($param);
        }
        catch(Exception $o){
            d($o);
        }
try{
            $fql1    =   "SELECT page_id,page_url,name,pic_square,description,fan_count,type FROM page WHERE page_id IN (SELECT page_id FROM page_admin WHERE uid =" . $user.")";
            $param1  =   array(
                'method'    => 'fql.query',
                'query'     => $fql1,
                'callback'  => ''
            );
            $fqlResult1   =   $facebook->api($param1);
        }
        catch(Exception $o){
            d($o);
        }
    }

    function d($d){
        echo '<pre>';
        print_r($d);
        echo '</pre>';
    }
function e($d){
        echo '<pre>';
    $count = count($d);
    for($i=0;$i<$count;$i++)
    {           
    echo 'Page ID :'.$d[$i][page_id].'<br>';
    $id = $d[$i][page_id];
    $_SESSION['id'] = $id;
    }
        echo '</pre>';
    }
 function f($d){
        echo '<pre>';
        print_r($d);
        echo '</pre>';
    }
?>

And Here is how facebook_login.php looks like

<?php ob_start(); ?>
<?php
    include('config.php');
    include('functions.php');
    include_once "fbmain.php";
    /*$publishStream = $facebook->api("/$user/feed", 'post', array(
                    'message' => "xxx", 
                    'link'    => 'http://xxxa.com',
                    'picture' => 'http://xxx.com/images/logo.png',
                    'name'    => 'xxx.com',
                    'description'=> 'xxx'
                    )
                );*/
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
        <title>Fanshala.com</title>

        <script type="text/javascript">
            function streamPublish(name, description, hrefTitle, hrefLink, userPrompt){        
                FB.ui({ method : 'feed', 
                        message: userPrompt,
                        link   :  hrefLink,
                        caption:  hrefTitle,
                        picture: ''
               });
               //http://developers.facebook.com/docs/reference/dialogs/feed/

            }
            function publishStream(){
                streamPublish("Stream Publish", 'I am an alpha Tester at xxx', 'Checkout fanshala.com', 'http://xxx.com', "Alpha Testing");
            }

            function newInvite(){
                 var receiverUserIds = FB.ui({ 
                        method : 'apprequests',
                        message: 'Be an alpha tester at fxxx . visit http://xxx.com',
                 },
                 function(receiverUserIds) {
                          console.log("IDS : " + receiverUserIds.request_ids);
                        }
                 );
                 //http://developers.facebook.com/docs/reference/dialogs/requests/
            }
        </script>
    </head>
<body>

<style type="text/css">
    .box{
        margin: 5px;
        border: 1px solid #60729b;
        padding: 5px;
        width: 500px;
        height: 200px;
        overflow:auto;
        background-color: #e6ebf8;
    }
</style>

<div id="fb-root"></div>
    <script type="text/javascript" src="http://connect.facebook.net/en_US/all.js"></script>
     <script type="text/javascript">
       FB.init({
         appId  : '<?=$fbconfig['appid']?>',
         status : true, // check login status
         cookie : true, // enable cookies to allow the server to access the session
         xfbml  : true  // parse XFBML
       });

     </script>



<?php
if($user)
{
         $id = $userInfo['id'];
         $name = $userInfo['name'];
         $link = $userInfo['link'];
         $username = $userInfo['username'];
         $birthday = $userInfo['birthday'];
         $gender = $userInfo['gender'];
         $email = $userInfo['email'];
         $verified = $userInfo['verified'];
         $picture = $fqlResult[0]['pic_square'];
        $check_user_reg = check_user_reg($email);
        //echo $id.$name;
        $_SESSION['id'] = $id;
        $_SESSION['name'] = $name;
        $_SESSION['link'] = $link;
        $_SESSION['username'] = $username;
        $_SESSION['birthday'] = $birthday;
        $_SESSION['gender'] = $gender;
        $_SESSION['email'] = $email;
        $_SESSION['verified'] = $verified;
        $_SESSION['reg_check'] = '1';
        $_SESSION['picture'] = $picture;
        $count = count($fqlResult1);
        $_SESSION['fbpages'] = $fqlResult1;
        if($check_user_reg == '0')
        {
            header("location:final_step.php");
        }
        else
        {
            $fbpages = $_SESSION['fbpages'];
            $count = count($fbpages);
            for($i=0;$i<$count;$i++)
            {
            $fbp_page_id =  $fbpages[$i][page_id];
            $fbp_fan_count = $fbpages[$i][fan_count];
            $update_fbpages = mysql_query("UPDATE `fbpages` SET `fan_count` = '$fbp_fan_count' WHERE `page_id` = '$fbp_page_id'");
            }
            header("location:fbpages.php");
        }                                   

//print_r($fqlResult1);
}

  ?>
  </body>
  </html>
  <? ob_flush(); ?>
share|improve this question
1  
Without knowing what API call you're making when you receive that error there's no way to help you – Igy Dec 15 '12 at 15:29
I have edited the article. Please take a look at the code. – Mohit Madan Dec 16 '12 at 14:00

closed as not a real question by phwd, Igy, César Bustíos, Frank van Puffelen, Graviton Dec 19 '12 at 2:59

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

here is a related topic witn some answers, maybe it can help you.

Here is the link

share|improve this answer

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