Does blockchain.info's json-rpc api return invalid json?

1

example response for getting a block:

{"id":"0","result":{"tx":[1ddd2f103625405389705637ab69603de692a22e86f06428a2...

there should be a " after the "tx":[

Tyler Gillies

Posted 2014-02-08T05:08:41.597

Reputation: 163

Can you give an example query that produces the output you have shown? A request such as https://blockchain.info/rawblock/00000000000000008daa21d98148ef94f8710cc1809f0d74288b55c3cdc8fec6 appears to produce well-formed JSON output.

Greg Hewgill 2014-02-08T05:57:21.817

That request isn't using the json-rpc api.

I'm talking about something like curl 'http://foo:bar@rpc.blockchain.info:80' -d'{"method": "getblock", "params": ["000000000000000011d19133cf716fb977c3a89a1b5cba9598d745a50ba118e5"], "jsonrpc": "2.0", "id": 0}' -H"Content-Type: applicaton/json"

Tyler Gillies 2014-02-08T06:10:08.823

1Ok yeah, that helps. I get the same sort of result as you describe and that certainly doesn't seem to be valid JSON.Greg Hewgill 2014-02-08T06:21:43.520

No answers