cors configuration on s3bucket permissions on heroku documentation

Solutions on MaxInterview for cors configuration on s3bucket permissions on heroku documentation by the best coders in the world

showing results for - "cors configuration on s3bucket permissions on heroku documentation"
Kaliyah
06 Aug 2016
1[
2    {
3        "AllowedHeaders": [
4            "*"
5        ],
6        "AllowedMethods": [
7            "GET",
8            "HEAD",
9            "POST",
10            "PUT"
11        ],
12        "AllowedOrigins": [
13            "*"
14        ],
15        "ExposeHeaders": []
16    }
17]
18
similar questions