我正在尝试在google bucket上设置CORS配置。我指的是background
。有人可以帮我解决如何在python中使用这个请求。
答案 0 :(得分:3)
您可能希望使用JSON API,并使用google-cloud-storage库。 Bucket的文档是here。
我没试过这个,但是有点像:
from google.cloud import storage
bucket = storage.Client().get_bucket('bucket-id-here')
bucket.cors = [{
origin: ['*', ...],
method: ['GET', ...],
responseHeader: ['some-resp-header', ...],
maxAgeSeconds: 86400, # one day
}]
bucket.patch() # Send the update