Authentication
使用 Axel 下載器進行 HTTPS 身份驗證
有沒有辦法通過 Axel 使用 https 身份驗證來下載文件?
我已經完成了這個答案並嘗試了所寫的內容,但沒有任何程度。我得到
HTTP/1.1 401 Unauthorized
了這個輸入命令的輸出:
axel -n 60 -k -H "Authorisation: Basic [some hash string]" "https://xxx.rar"
使用以下命令生成雜湊字元串:
echo -n "username:password" | openssl base64
所以最終,我想知道,我在輸入命令中進行了哪些更改才能下載文件?
標準 url 方案是:proto://user:password@host:port/path
axel -n 60 -k "https://user:password@host/xxx.rar"