HTTP to Google Cloud Storage Not Working

Hi there,

We are trying to setup rclone to read data from a HTTP source and sync it on Google Cloud Storage. We were told that the source we are trying to read from is an HTTP Source, its actually a link which when clicked or opened in the browser, downloads data in a CSV file (its a surveygizmo data export link) - however I am not able to set it up properly. Can you please let me know how should we set this up correctly? The url we are trying to fetch data from is:

https://data.surveygizmo.com/reportsview/?key=99759-8644201-bf0d34524dfe164a5a3b826fb48d4f86&realtime=true

Thanks in advance!

The rclone http remote is set up for reading a directory listing rather than a single fileā€¦

If you just want to upload those single files, then you could do it with a combination of curl and rclone, eg something like this

curl -s 'https://data.surveygizmo.com/reportsview/?key=99759-8644201-bf0d34524dfe164a5a3b826fb48d4f86&realtime=true' | rclone -v rcat remote:path/file.csv