Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jaxl not doing anything using example. Facebook Chat attempt

      $jaxl = new JAXL(array(  
            'user'=>'[email protected]',  
            'pass'=>'', // Not required, we will use user session key instead  
            'host'=>'chat.facebook.com',  
            'domain'=>'chat.facebook.com'  
    ));  
            function getFacebookKey() {
            global $session;
              global $app_secret,$api_key;
                            return array(  
                                    $app_secret, // Your application secret key  
                                    $api_key, // Your application api key  
                                    $session['session_key'] // Connecting user session key  
                            );  
                    }  


            function doAuth($mechanism) {  
            global $jaxl;  
            $jaxl->auth("X-FACEBOOK-PLATFORM");  
    }  


        function postAuth($payload, $jaxl) {
            var_dump($jaxl);
            $jaxl->sendMessage('[email protected]', 'what up');


        }

// Register callback on required hook (callback'd method will always receive 2 params)
$jaxl->addPlugin('jaxl_post_auth', 'postAuth');

$jaxl->addPlugin('jaxl_get_facebook_key', 'getFacebookKey');
// Start Jaxl core
$jaxl->startCore('stream');

    exit;

Nothing is outputing or showing up in the jaxl log. Any help would be greatly appreciated.

like image 249
Arian Avatar asked Apr 03 '11 21:04

Arian


1 Answers

You may need to create the log file and given it wide open permissions...

sudo touch /var/log/jaxl.log

sudo chmod 777 /var/log/jaxl.log

like image 146
mdpatrick Avatar answered Oct 29 '22 14:10

mdpatrick