Pure JavaScript code for HTTP Basic Authentication?

前端 未结 2 657
抹茶落季
抹茶落季 2020-11-27 12:56

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

Extra points for code, or pointers to code,

相关标签:
2条回答
  • 2020-11-27 13:15

    The five-parameter version of the XMLHttpRequest.open method allows you to specify the username and password. (WHATWG spec)

    xhr.open(method, url, async, username, password)
    
    0 讨论(0)
  • 2020-11-27 13:18

    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.

    0 讨论(0)
提交回复
热议问题