Skip to content

Instantly share code, notes, and snippets.

@shebin512
Forked from exAspArk/curl.sh
Last active September 22, 2020 18:52
Show Gist options
  • Save shebin512/912be3a73c8d81c17a3ef63eac4ac7fb to your computer and use it in GitHub Desktop.
Save shebin512/912be3a73c8d81c17a3ef63eac4ac7fb to your computer and use it in GitHub Desktop.
Test CORS with cURL
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