Difference between revisions of "Cross-Origin Resource Sharing (CORS)"

From wikieduonline
Jump to navigation Jump to search
 
(7 intermediate revisions by 2 users not shown)
Line 42: Line 42:
 
     }
 
     }
 
  ]
 
  ]
 +
 +
 +
== Errors ==
 +
* <code>[[has been blocked by CORS policy]]</code>
  
  
Line 48: Line 52:
 
* [[HSTS]]
 
* [[HSTS]]
 
* [[Tellme Networks]]
 
* [[Tellme Networks]]
 +
* [[Caddyfile]]
 +
* <code>[[gsutil cors]]</code>
 +
* [[Terraform resource: aws cloudfront origin access control]]
 +
* [[CORS (golang)]]
 +
* [[geth --http --http.corsdomain]]
  
 
== See also ==
 
== See also ==

Latest revision as of 12:37, 27 October 2024

wikipedia:Cross-Origin Resource Sharing is a mechanism that allows restricted resources on a web page to be requested from another domain outside the domain from which the first resource was served.

Example:

[
    {
        "AllowedHeaders": [
            "*"
        ],
        "AllowedMethods": [
            "PUT",
            "POST"
        ],
        "AllowedOrigins": [
            "*"
        ],
        "ExposeHeaders": [],
        "MaxAgeSeconds": 3000
    }
]


[
   {
       "AllowedHeaders": [
           "*"
       ],
       "AllowedMethods": [
           "PUT",
           "POST",
           "GET",
           "DELETE"
       ],
       "AllowedOrigins": [
           "*"
       ],
       "ExposeHeaders": [
           "ETag"
       ],
       "MaxAgeSeconds": 3000
   }
]


Errors[edit]


Related terms[edit]

See also[edit]

Advertising: