Hi,
I have use the facebook status module for user post the comment on own profile and post data on facebook profile wall. But the problem have on authenticated user on site, whenever exist user post the facebook comment on own profile then error message popup "An error occurred. /xxxx/facebook_status/js (no information available)." and data not add profile page and not post on facebook.

I have found the bug on line this $facebookstatus->api("/$xxx/feed", "post", $message);

But admin post then it is working fine.

use the code

$facebookstatus = new Facebook(array(
'appId' => 'xxxxxxxxx',
'secret' => 'xxxxxxxxxxxxxxxx',
'cookie' => true,
));

$callback_url = url('xxxx/'.$xxx, array('absolute' => TRUE));

$url_parms = array('next' => $callback_url, 'req_perms' => 'xxxxx, offline_access, xxxxx');

$login_url = $facebookstatus->getLoginUrl($url_parms);

$session = $facebookstatus->getSession();
$access_token_value = $session['access_token'];

$message = array(
'access_token' => $access_token_value,
'message' => $status_value,
);
$facebookstatus->api("/$xxx/feed", "post", $message);

Please help how to fix error.

Thanks
Aqueel

CommentFileSizeAuthor
fb_status.jpg36.56 KBaqueelahmad