Skip to content

Instantly share code, notes, and snippets.

@bradoyler
Forked from madis/gist:4650014
Created July 6, 2016 20:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bradoyler/2efddf556a1bac5863971843de35cd47 to your computer and use it in GitHub Desktop.
Save bradoyler/2efddf556a1bac5863971843de35cd47 to your computer and use it in GitHub Desktop.
Testing CORS OPTIONS request with curl
curl \
--verbose \
--request OPTIONS \
http://localhost:3001/api/configuration/visitor \
--header 'Origin: http://localhost:9292' \
--header 'Access-Control-Request-Headers: Origin, Accept, Content-Type' \
--header 'Access-Control-Request-Method: GET'
# http://nils-blum-oeste.net/cors-api-with-oauth2-authentication-using-rails-and-angularjs/#.UQJeLkp4ZyE
# http://blog.carbonfive.com/2012/02/27/supporting-cross-domain-ajax-in-rails-using-jsonp-and-cors/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment