vote up 1 vote down star

Where can I find reference code that implements a HTTP Basic Authentication client in pure Javascript, suitable for Ajax?

(Yes, I could read the spec and implement it myself, but it's for a side project and I'd rather not spend much time on it.)

Extra points for code, or pointers to code, that can be used independent of JS toolkits like YUI. No points for Java, Flash/Flex, PHP frameworks, etc.

flag

What do you mean pure javascript? You're looking for a way to set cookies with javascript without the page reloading? – Luca Matteis Jan 29 at 16:01

2 Answers

vote up 2 vote down check

Take a look at the W3C specifications for the XMLHttpRequest Object. The five-parameter version of the 'open' method allow you to specify the username and password.

link|flag
Exactly what I needed, and I should have RTFM! Thanks! – system PAUSE Jan 29 at 16:15
vote up 2 vote down

There is a good article/tutorial written by Paul James. I used it some time ago and it worked for me.

HTTP Authentication with HTML Forms

[...] XMLHTTPRequest, it can submit the correct HTTP auth headers for us. Rather than adjusting the URL the form submits to, we can use XMLHTTPRequest to do a request before the form submits supplying the entered username and password.

This will set up the browser with the HTTP auth credentials so it'll also send them with our actual form submission login request.

link|flag
More than what I was looking for, but looks like a very nice way to replace the browser's default login dialog. – system PAUSE Jan 29 at 16:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.