I am trying to post on user's wall in an facebook app, this is not working in Internet Explorer, in other browser it is working. this Error is shown: OAuthException: An active access token must be used to query information about the current user. in IE and other browser token is different.
try{
$access_token = $facebook->getAccessToken();
$attachment = array('access_token '=>$access_token ,
'message' => $pageUrl,'name' =>"Test Name",
'link' => $pageUrl,'description'=>$desc,'picture'=>$img,'caption'=>'test ' );
$facebook->api('/me/feed', 'POST', $attachment); }
catch (FacebookApiException $e){
echo $e;
}