It's really just stringified JSON, you can parse it with your favourite JSON library in any language, like js:
s = "{\"count\":15323,\"temp\":\"19.19\"}"
JSON.parse(s)
-> Object { count=15323, temp="19.19"}
It's really just stringified JSON, you can parse it with your favourite JSON library in any language, like js:
s = "{\"count\":15323,\"temp\":\"19.19\"}"
JSON.parse(s)
-> Object { count=15323, temp="19.19"}