I have a problem importing a file from a website where you need to be registered to launch the download of the csv file, here is my code :
filename foo url 'http://XXXX:8028/'
USER='XXX' PASS='XXX' debug;
proc import file=foo
out=bigdata_tel2
dbms=csv
replace;
delimiter=";";
getnames=no;
run;
The result is the html code of the page, I also tried that url :http://XXXX:8028/aaa.csv notice that the url doesn't change when I download the file.
Here is the website :
It's my first time importing a file from a website, any help is welcome. Thanks