Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在尝试使用 mechanize 下载 mp3 文件,但服务器总是返回 404。
查看我的浏览器发送的标头(在 Chrome 和 FF 上检查),我注意到If-RangeandRange标头用于启动成功下载,所以我猜测服务器正在拒绝任何未指定它们的请求。
If-Range
Range
Net::HTTP使用 ruby ( ) 或 bash ( curlor )以这种方式下载文件的正确方法是什么wget?
Net::HTTP
curl
wget
404 是找不到文件。你确定你的网址是正确的吗?如果它是正确的,那么你应该能够使用 wget <full url and file name> 来测试它。