Hello I have tried using wget to download class files from BlackBoard, but it keeps saying that
Reusing existing connection to uic.blackboard.com:443. HTTP request sent, awaiting response... 401
Username/Password Authentication Failed.
I may be using the command wrong. I would appreciate the help
I have tried wget and curl.
The page you are trying to open uses javascript, which is not supported by wget - so that's the end of that option.
As for curl, what happens if you try to spoof javascript support (this may end up dumping the page source, which may not be what you are trying to achieve, but worth trying)
The following call to curl is setting the user agent so that it appears to be a javascript compatible browser, and we are also explicitly stating HTTPS protocol (even though 443 implies it, best to be clear our intentions):
EDIT: As mentioned by @Bruce Malaudzi even if you can get around the Javascript problem, there is also the authentication error, so modified my answer to include that too: