When using CORS (Cross-Origin Resource Sharing) with Internet Explorer – does it support providing an Authroization (i.e. for basic Auth)?
When using CORS (Cross-Origin Resource Sharing) with Internet Explorer – does it support providing
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Short answer: no. Longer answer:
Internet Explorer 7 and below has no support for CORS
Internet Explorer 8 and 9 has limited CORS support via the XDomainRequest object. The XDomainRequest object does not support custom headers, therefore it can’t support the
Authorizationheader. (source: http://blogs.msdn.com/b/ieinternals/archive/2010/05/13/xdomainrequest-restrictions-limitations-and-workarounds.aspx)The upcoming Internet Explorer 10 will have full support for CORS, which includes support for custom headers like
Authorization. (source: http://blogs.msdn.com/b/ie/archive/2012/02/09/cors-for-xhr-in-ie10.aspx)