I am getting 403 forbidden error for json object when sent using GET method.
In detail,
My index.php contain facebook integration (js-sdk) what I need is when facebook returns data as 'response' it should send to url or call ajax.
So I have converted response into json as,
var json = JSON.stringify( response );
and redirect to url, window.location.href = 'get.php?json='+json;
On get.php,
header("Content-type: application/json; charset=utf-8");
$user = json_decode($_GET['json']);
var_dump($user);
But it gives me forbidden error.