You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 7, 2020. It is now read-only.
While trying to download the CSV file for nationwide, or a large state, the UI gives error Failed to load resource: net::ERR_INCOMPLETE_CHUNKED_ENCODING, however, the API successfully returns the data at this endpoint https://<dev_server>/v2/data-browser-api/view/nationwide/csv
Since the data being returned is quite big, the API is returning the data in a streaming fashion. The front end should call the streaming API accordingly. cURL can be used to stream the data like this:
curl -X GET 'https://<devserver>/v2/data-browser-api/view/csv?states=CA,MD,DC' >> ca_md_dc.csv
or curl -X GET 'https://<devserver>/v2/data-browser-api/view/nationwide/csv' >> nationwide.csv
The text was updated successfully, but these errors were encountered:
omnipresent07
changed the title
nationwide/csv download isn't working
csv downloads aren't working
Jun 30, 2019
Uh oh!
There was an error while loading. Please reload this page.
While trying to download the CSV file for nationwide, or a large state, the UI gives error
Failed to load resource: net::ERR_INCOMPLETE_CHUNKED_ENCODING
, however, the API successfully returns the data at this endpointhttps://<dev_server>/v2/data-browser-api/view/nationwide/csv
Since the data being returned is quite big, the API is returning the data in a streaming fashion. The front end should call the streaming API accordingly.
cURL
can be used to stream the data like this:curl -X GET 'https://<devserver>/v2/data-browser-api/view/csv?states=CA,MD,DC' >> ca_md_dc.csv
or
curl -X GET 'https://<devserver>/v2/data-browser-api/view/nationwide/csv' >> nationwide.csv
The text was updated successfully, but these errors were encountered: