Open marcelinorodrigom opened 4 years ago
The redirection of jsapi to the new loader is back to 100%, and we would like to leave it in place if possible. This redirect means you will be using a newer version as well, unless you change the version to something like '45.2'.
I can't tell why you are getting a JSON parse error without details but I would guess it probably involves something in how you are fetching your data.
I'm not sure if this is related, but I'm now getting 404 errors in my app (using the data tables) on this resource: https://www.gstatic.com/charts/48.1/js/jsapi_compiled_corechart%2Ctable_module.js
That is interesting, @spleenware, since the "corechart%2Ctable" indicates that comma (',' is %2C) got encoded as part of a single conjoined package name rather than 2 package names separated by comma. You should be loading packages: ['corechart', 'table']. If you are, then there is a bug in the loader. Are you using the autoload feature?
That is interesting, @spleenware, since the "corechart%2Ctable" indicates that comma (',' is %2C) got encoded as part of a single conjoined package name rather than 2 package names separated by comma. You should be loading packages: ['corechart', 'table']. If you are, then there is a bug in the loader. Are you using the autoload feature?
It's been SO long since I wrote the app, but here's the page snippet:
Githubissues.
We're having some issues to render a table using the API:
It was working until early May (using the version 1), then it started working intermittently (which seems to be related to whether the redirection got HTTP 200), but now, it won't work at all.
We tried changing to a more recent version, tried to change the code to use the new loader, but with no success.
P.S.: I noticed that the issue #2821 had a similar error message, although related to GeoChart.
We'd appreciate any help!