We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0d9918 commit cc987dcCopy full SHA for cc987dc
README.rst
@@ -92,16 +92,23 @@ CORS policy
92
You will need to allow ``POST`` from all origins. Just add the following
93
to your CORS policy.
94
95
-.. code:: xml
96
-
97
- <CORSConfiguration>
98
- <CORSRule>
99
- <AllowedOrigin>*</AllowedOrigin>
100
- <AllowedMethod>POST</AllowedMethod>
101
- <MaxAgeSeconds>3000</MaxAgeSeconds>
102
- <AllowedHeader>*</AllowedHeader>
103
- </CORSRule>
104
- </CORSConfiguration>
+.. code:: json
+
+ [
+ {
+ "AllowedHeaders": [
+ "*"
+ ],
+ "AllowedMethods": [
+ "POST"
105
+ "AllowedOrigins": [
106
107
108
+ "ExposeHeaders": [],
109
+ "MaxAgeSeconds": 3000
110
+ }
111
+ ]
112
113
Progress Bar
114
------------
0 commit comments