Wget 和 chrome 下载

Wget 和 chrome 下载

虽然我可以通过 Chrome 下载 HTTP 链接文件,但这种格式

http://someplace.some/get.php?username=myusername&password=mypass&type=m3u_plus&output=ts

如果我尝试使用 wget 进行相同的操作,则会出现 404 错误

wget --user=myusername --password=mypass "http://someplace.some/get.php?type=m3u_plus&output=ts"

我缺少什么?

答案1

您的端点期望在查询字符串中提供用户名和密码。 wget--user--passwordoptions 用于使用 HTTP 身份验证。他们不会为您设置任何查询字符串参数。您应该按原样获取 URL:

wget "http://someplace.some/get.php?username=myusername&password=mypass&type=m3u_plus&output=ts"

相关内容