$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.
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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With