使用 Axel Downloader 進行 HTTPS 驗證

使用 Axel Downloader 進行 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

所以最終,我想知道,我應該在輸入命令中更改什麼才能下載檔案?

答案1

標準 url 方案為: proto://user:password@host:port/path

axel -n 60 -k "https://user:password@host/xxx.rar" 

相關內容