Getting Json on Arduino Yun

Hi!
Im trying to get a Json from an http server; for this I used the WiFi httpclient example (https://www.arduino.cc/en/Tutorial/HttpClient).
But the client read is made 1 caracter at a time.
Is there anyway to get the Json as a complete variable from the server, or the posibility to get all the caracters and define them into 1 Json.

Thanks!

Use a python script to get the json. Personally I dont like using the atmega to manage strings, they eat the sram quickly.

joseto:
Hi!
Im trying to get a Json from an http server; for this I used the WiFi httpclient example (https://www.arduino.cc/en/Tutorial/HttpClient).
But the client read is made 1 caracter at a time.
Is there anyway to get the Json as a complete variable from the server, or the posibility to get all the caracters and define them into 1 Json.

Thanks!

Well, yes, do all the processing of the JSON stuff on the Linux side of the Yun, and only pass down to the AVR side what is necessary to be processed on that end...

Ralf