https://cloud.google.com/storage/docs/json_api/v1/json-api-python-samples
使用上面的示例,我能够将文件上传到存储桶。但是我无法将其上传到存储桶中的文件夹。
错误:“无效的存储桶名称:”
感谢任何帮助!
答案 0 :(得分:0)
在
下def upload_object(bucket, filename, readers, owners):
service = create_service()
# This is the request body as specified:
# http://g.co/cloud/storage/docs/json_api/v1/objects/insert#request
body = {
'name': 'foldername/' + filename,
}
添加< foldername /' + filename。
这会将它指向正确的位置。