Downloading a file from web with header "content-disposition: attachment"
I would like to download a csv file from a webpage, however when I send the HTTP request the return is Empty(). My code is as follows:request = New HTTP Request( URL( url), Method( "Get" ), Headers( {"Authorization: Bearer " || token} ));
data = request << send;
I receive the following response header, so I'm confident I am accessing the server: GetResponseHeaders = ["content-disposition" => "attac
...