I am trying to use the SO API (eg: http://api.stackoverflow.com/1.0/users/3) to get some data:

<?php

$data = file_get_contents('http://api.stackoverflow.com/1.0/users/3');
echo $data;

?>

But the returned contents are garbled. I tested it on a couple different servers, including http://codepad.viper-7.com/9GFvsM. Is it my code or the API?

link|improve this question

80% accept rate
1  
Hmmm... Maybe this is gzipped? – 999999 Oct 7 '10 at 16:53
1  
(0) belongs on meta, or even stackapps.com (1) how are they garbled? – SilentGhost Oct 7 '10 at 16:53
(0) Not really if it's a programming problem (it is) (1) There is a link on my post. – 999999 Oct 7 '10 at 17:12
feedback

1 Answer

up vote 2 down vote accepted

The response is gzipped. I recommend you use curl and set CURLOPT_ENCODING to gzip.

link|improve this answer
Figured this out just now. – 999999 Oct 7 '10 at 16:56
2  
It shouldn't be gzipped if the client didn't request it as such, should it? – Pekka Oct 7 '10 at 16:56
1  
@Pekka See stackapps.com/questions/729/… – Artefacto Oct 7 '10 at 20:04
@Artefacto cheers. I agree with Then the server should send a 406 response. – Pekka Oct 7 '10 at 20:07
feedback

Your Answer

 
or
required, but never shown

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