Cross-Origin Resource Sharing (CORS) is a security feature implemented by browsers to restrict web pages from making requests to a different domain than the one that served the web page. When developing APIs, it’s crucial to configure CORS correctly to ensure that your resources can be accessed by authorized domains. In this article, we present three practical examples of testing CORS configurations using Postman.
In this example, we’ll test a simple API that has CORS enabled for a specific origin, allowing requests only from that origin.
To verify that the CORS settings are functioning as expected, we will attempt a request from a different origin and observe the response.
GET
.https://api.example.com/data
).Go to the Headers
tab and add a new header:
Origin
https://unauthorized-origin.com
Send
to execute the request.Observe the response:
https://unauthorized-origin.com
with any origin that is not authorized to access the API.In this example, we will test an API that allows requests from a specific origin. We will use Postman to send a request from that authorized origin and check the response headers for CORS.
GET
.https://api.example.com/data
).In the Headers
tab, add the following header:
Origin
https://authorized-origin.com
Send
to execute the request.Check the response headers:
Access-Control-Allow-Origin
and ensure it includes https://authorized-origin.com
.Origin
header value to match the allowed origin configured in your API.CORS preflight requests are sent by browsers before making certain types of requests (like PUT
or DELETE
). This example demonstrates how to simulate a preflight request using Postman to check if the server handles it correctly.
OPTIONS
.https://api.example.com/data
).In the Headers
tab, add the following headers:
Origin
https://authorized-origin.com
Access-Control-Request-Method
POST
Send
to execute the request.Examine the response:
Access-Control-Allow-Methods
header includes POST
(or the method you specified).Access-Control-Request-Method
header based on your API’s capabilities.By following these examples of testing CORS configurations using Postman, developers can ensure that their APIs are secure and function correctly across different origins.