Hello, I have followed the instructions in these docs pages to create a file picker to upload multiple photos to google cloud storage.
https://docs.retool.com/docs/google-cloud-storage-integration
https://docs.retool.com/docs/upload-multiple-files-through-a-gcs-s3-resource
Single uploads work correctly, but multiple uploads always fail with a CORS error.
I've set the cors config as
{
"origin": ["https://*.retool.com"],
"responseHeader": ["Content-Type", "x-goog-acl"],
"method": ["GET", "HEAD","POST", "PUT", "DELETE"],
"maxAgeSeconds": 3600
}
]
But still keep getting the same error, is there anything more I can do to debug this? It's blocking us launching
Thank you