Last active
March 30, 2025 14:43
-
-
Save exAspArk/07bbbafa2a9171b6c260989780cc0955 to your computer and use it in GitHub Desktop.
Test CORS with cURL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -I -X OPTIONS \ | |
-H "Origin: http://EXAMPLE.COM" \ | |
-H 'Access-Control-Request-Method: GET' \ | |
http://EXAMPLE.COM/SOMETHING 2>&1 | grep 'Access-Control-Allow-Origin' |
Thankyou
not working
Better use a case insensitive grep:
MY_URL=http://EXAMPLE.COM
curl -I -X OPTIONS \
-H "Origin: ${MY_URL}" \
-H 'Access-Control-Request-Method: GET' \
"${MY_URL}/SOMETHING" 2>&1 | grep -i 'Access-Control-Allow-Origin'
Better use a case insensitive grep:
MY_URL=http://EXAMPLE.COM curl -I -X OPTIONS \ -H "Origin: ${MY_URL}" \ -H 'Access-Control-Request-Method: GET' \ "${MY_URL}/SOMETHING" 2>&1 | grep -i 'Access-Control-Allow-Origin'
Better. Thank you.
Better use a case insensitive grep:
MY_URL=http://EXAMPLE.COM curl -I -X OPTIONS \ -H "Origin: ${MY_URL}" \ -H 'Access-Control-Request-Method: GET' \ "${MY_URL}/SOMETHING" 2>&1 | grep -i 'Access-Control-Allow-Origin'
This one works for me. Thank you!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks