使用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?还有其他人有这个问题吗?