我遵循指南并更新我的代码以在GAE中使用新的Cloud Storage API,我确实需要设置cachecontrol标头,以前很容易:
files.gs.create(filename, mime_type='image/png', acl='public-read', cache_control='public, max-age=100000, must-revalidate' )
但是,使用新的API,指南说“cache_control”不可用... 尝试将cachecontrol放在Options中时出现此错误:
ValueError: option cache_control is not supported.
尝试使用Cache-Control和相同的错误......
像往常一样,新API的文档并不好。
有人可以帮我了解如何使用PYTHON在新的Cloud Storage API中设置缓存标头。如果不可能,我仍然可以将旧api用于我的项目吗?
感谢。