Dropbox 400 잘못된 요청에서 파일을 다운로드할 수 없습니다

Dropbox 400 잘못된 요청에서 파일을 다운로드할 수 없습니다

가이드

https://tracker.ceph.com/projects/ceph/wiki/Ceph_Vagrant_Setup

$ wget https://www.dropbox.com/s/hn28qgjn59nud6h/ceph-all-in-one.box
--2020-03-14 12:11:09--  https://www.dropbox.com/s/hn28qgjn59nud6h/ceph-all-in-one.box
Resolving www.dropbox.com (www.dropbox.com)... 162.125.80.1
Connecting to www.dropbox.com (www.dropbox.com)|162.125.80.1|:443... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: /s/raw/hn28qgjn59nud6h/ceph-all-in-one.box [following]
--2020-03-14 12:11:10--  https://www.dropbox.com/s/raw/hn28qgjn59nud6h/ceph-all-in-one.box
Reusing existing connection to www.dropbox.com:443.
HTTP request sent, awaiting response... 400 Bad Request
2020-03-14 12:11:10 ERROR 400: Bad Request.

파일이 오래되었나요?

답변1

웹 브라우저를 사용하여 방문해보세요 https://www.dropbox.com/s/hn28qgjn59nud6h/ceph-all-in-one.box. Dropbox에 다음 메시지가 표시됩니다.

404 원하시는 내용을 찾을 수 없습니다.

(메시지를 표시하려면 자바스크립트가 필요하지만...)


다음을 통해 페이지 요청 curl:

$ curl -IL 'https://www.dropbox.com/s/hn28qgjn59nud6h/ceph-all-in-one.box'
HTTP/2 301
...
location: /s/raw/hn28qgjn59nud6h/ceph-all-in-one.box
...
HTTP/2 400

다른 User-Agent헤더 사용:

$ curl -A cruel -IL 'https://www.dropbox.com/s/hn28qgjn59nud6h/ceph-all-in-one.box'
HTTP/2 200
...
$ curl -s -A cruel 'https://www.dropbox.com/s/hn28qgjn59nud6h/ceph-all-in-one.box' |
> grep -om1 '<title>[^<]*'
<title>Dropbox - Error

관련 정보