Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
What happens if you omit the header() line? – Facebook Answers Jan 21 at 7:28

1 Answer

Sending data in GET requests are not allowed. You may only include some headers in it.

Requests using GET should only retrieve data and should have no other effect

wiki about HTTP requests

Use POST request if you need to send JSON object.

share|improve this answer
No you are wrong. Both GET and POST are used for sending data. However, in the case of a GET, the uri involved should not make any changes to data stored. So for instance, adding an item to a shopping cart would be a POST, as you are changing data, whereas viewing the contents of a specific cart would be a GET, as that would not change data stored. – Facebook Answers Jan 21 at 7:03
@FacebookAnswers, nevertheless you won't be able to send serialized object within GET request, like JSON, as GET request does not have body. – ted Jan 21 at 7:14
What do you mean by body? – Facebook Answers Jan 21 at 7:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.