I have specific problem. My facebook app post photo on user wall. Everything in browsers like Chrome, Opera, Firefox is ok, but in Internet Explorer it is do not work. This is part of my code:
$nazwa = 'temp/'.$_GET["nazwa"].'.jpg'; //link to picture
$file = "@".realpath($nazwa);
$access_token = $facebook->getAccessToken();
$args = array(
'message' => 'hello my photo',
"access_token" => $access_token,
"image" => $file
);
$data = $facebook->api('/me/photos', 'post', $args);
Where can be problem? Is this possible IE have problem with $_GET?