GCS客户端库(python)" gzip"打破直接下载

时间:2014-10-15 09:08:14

标签: python google-app-engine google-cloud-storage

使用GCS客户端库(python)如果我创建一个支持gzip的对象,它会破坏直接下载链接,服务器只返回空响应或有时“服务不可用”。但它我从Content-Encoding中删除“gzip”然后它工作正常。这是我的代码,我在GAE中使用它:

gcs_file = gcs.open(filename, 
                        'w',
                        content_type='application/json',
                        options={'x-goog-acl': 'public-read',
                             'Content-Encoding': 'gzip',
                             'Cache-Control': 'public, max-age=0'}, 
                        retry_params=write_retry_params)

是否有任何解决方法可以通过public-read支持gzip?还有其他人有这个问题吗?

0 个答案:

没有答案