使用7.2.2遇到下载问题
Gourds opened this issue · 2 comments
Gourds commented
环境:
- qiniu 7.2.2
- requests 1.2.3
我的写法如下
def download(self, filename, output_dir):
base_url = 'http://%s/%s' % (self.mdomain, filename)
private_url = self.mauth.private_download_url(base_url)
if os.path.exists(output_dir):
os.chdir(output_dir)
else:
os.makedirs(output_dir)
os.chdir(output_dir)
res = requests.get(private_url, stream=True)
assert res.status_code == 200
with closing(res) as r:
accepts = 0
chunk_size = 512
with open(os.path.basename(filename), "wb") as code:
for chunk in r.iter_content(chunk_size=chunk_size):
#downlaod big data optimization;old mathed is code.write(r.content)
code.write(chunk)
accepts += len(chunk)
# print accepts, int(r.headers['Content-Length'])
progress = round(float(accepts) / int(r.headers['Content-Length']), 4) * 100
sys.stdout.write('\r' + 'Now downlaod ' + str(progress) + '%' + '\n')
sys.stdout.flush()
遇到的问题是,使用request,提示GET
方法不被允许,只允许POST
貌似,还是说我的写法有问题。
http://up-xxx.qiniup.com/VN-DynamoDB-BAK/Mail_G206.tar.gz?e=1531384253&tokenxxx
#直接GET就报405
已发出 HTTP 请求,正在等待回应... 405 Method Not Allowed
2018-07-12 06:34:43 错误 405:Method Not Allowed。
ps:
用自己的测试账号,发现可以下载,但是用另一个账号不行,然后参照https://github.com/qiniu/qshell/blob/master/docs/qdownload.md
试了qshell,感觉像跟cdn-domain
有关系,但是SDK里没有发现相关的配置
jemygraw commented
你用upload的域名去下载文件肯定是不行的,需要用空间绑定的域名去下载。