Hi, I am testing an endpoint as a data source. Its raw response now is:
google.visualization.Query.setResponse({"status":"ok","table":{"rows":[{"c":[{"v":1.0}]},{"c":[{"v":3.0}]}],"cols":[{"id":"Col1","type":"number"}]},"reqId":"0"})
But when the response is processed after query.send(), I get the error: "Unexpected token ) in JSON at position 121".
But, as far as I can tell, the JSON format is as specified in the documentation (with the detail of quotes around names because I interpret this is proper for "strict" JSON).
What could be going wrong ?
Thanks in advance!