Difference between revisions of "Cross-Origin Resource Sharing (CORS)"
Jump to navigation
Jump to search
Line 48: | Line 48: | ||
* [[HSTS]] | * [[HSTS]] | ||
* [[Tellme Networks]] | * [[Tellme Networks]] | ||
− | + | * <code>[[has been blocked by CORS policy]]</code> | |
== See also == | == See also == |
Revision as of 13:20, 2 March 2023
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 } ]
Related terms
See also
Advertising: