Use image url from aws s3

Hi folks:
I`m trying to use an image url from s3 on Texture to display in dcl, however seems like it is not working.
public api access is opened in aws, and I tried both s3 url and use cdn, both not working.
Any help is really appreciated.

Thanks
Daniel

You also need to set CORS settings for the bucket. See CORS configuration - Amazon Simple Storage Service

Example to allow all GET:
[{
“AllowedHeaders”: [ ],
“AllowedMethods”: [
“GET”
],
“AllowedOrigins”: [
“*”
],
“ExposeHeaders”: [ ]
}
]