I need to download an excel spreadsheet from Onedrive shared location to our unix server using WGET or CURL. I am able to download an un-protected link without issues:
wget "https://...&download=1"
but I would prefer to have the file protected, either by password or by allowing access only to people in our company.
The issue is, I am unable to download such protected file using WGET, the --password option is not accepted:
wget --password=abc "https://...&download=1"