When using export=json&json_force_object=1 the output is prepended by
"0":
This makes the output unparseable by standard jquery functions like .getJSON
Currently I'm writing php files like this to handle this problem
<?php
echo "{" . file_get_contents("http://mydbr/report_url...&export=json&json_force_object=1") . "}";
?>
Would it be possible to get the result correctly formatted with the brackets?
This would ensure standard behaviour and remove the necessity to proxy the exported reports.
Regards,
Maron