Hi, i am a super rookie for this. I tried to store some of my data for analysis on cloudflare R2. And when I read it in python by pandas, it said HTTP Error 403: Forbidden
. This also when I try to import the font file stored on R2 in html file. I personally can visit those files by visiting the url (not from a request sent by python script or html file). I know this has something to do with configuring the CORS. However, this is my current configuration:
[
{
"AllowedOrigins": [
"*"
],
"AllowedMethods": [
"GET"
],
"AllowedHeaders": [
"*"
],
"ExposeHeaders": [
"*"
]
}
]
But it didnt work at all. Can anyone help me? I just need to make the file accessible for non-human requests.