Skip to content

Instantly share code, notes, and snippets.

@insign
Forked from exAspArk/curl.sh
Last active November 2, 2021 18:30
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save insign/867dd0ef92366e7cc8ef2104a2fc1cfc to your computer and use it in GitHub Desktop.
Save insign/867dd0ef92366e7cc8ef2104a2fc1cfc to your computer and use it in GitHub Desktop.
Test CORS with cURL (case insensitive)
curl -I -X OPTIONS \
-H "Origin: http://EXAMPLE.COM" \
-H 'Access-Control-Request-Method: GET' \
http://EXAMPLE.COM/SOMETHING 2>&1 | grep -i 'Access-Control-Allow-Origin'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment