qiniu/python-sdk

使用7.2.2遇到下载问题

Gourds opened this issue · 2 comments

环境:

  • 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里没有发现相关的配置

你用upload的域名去下载文件肯定是不行的,需要用空间绑定的域名去下载。

@jemygraw 好的,谢谢。空间绑定的域名是【融合CND-->域名管理】上面显示的域名么