Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to create a basic auth through browser, but I can't really get there.

If this script won't be here the browser auth will take over, but I want to tell the browser that the user is about to make the authentication.

The address should be something like:

http://username:password@server.in.local/

I have a form:

<form name="cookieform" id="login" method="post">
      <input type="text" name="username" id="username" class="text"/>
      <input type="password" name="password" id="password" class="text"/>
      <input type="submit" name="sub" value="Submit" class="page"/>
</form>

And a script:

var username = $("input#username").val();
var password = $("input#password").val();  

function make_base_auth(user, password) {
  var tok = user + ':' + pass;
  var hash = Base64.encode(tok);
  return "Basic " + hash;
}
$.ajax
  ({
    type: "GET",
    url: "index1.php",
    dataType: 'json',
    async: false,
    data: '{"username": "' + username + '", "password" : "' + password + '"}',
    success: function (){
    alert('Thanks for your comment!'); 
    }
});
share|improve this question
2  
So you don't want the browser to handle the BASIC authentication? Why not just use form-based authentication? – no.good.at.coding Mar 31 '11 at 22:47

6 Answers

up vote 31 down vote accepted

Use jquery beforeSend callback to add a HTTP header with the authentication information: http://api.jquery.com/jQuery.ajax/

beforeSend: function (xhr) { xhr.setRequestHeader (“Authorization”, “Basic XXXXXX”); },

share|improve this answer
3  
i am using the example u gave but it doesn't work ` $.ajax ({ url: "server.in.local/index.php";, beforeSend: function (xhr) { xhr.setRequestHeader(“Authorization”, “Basic ” + encodeBase64 (“username:password”) );}, succes: function(val) { //alert(val); alert("Thanks for your comment!"); } }); ` – Patrioticcow Mar 31 '11 at 23:07

How things change in a year. In addition to the header attribute in place of xhr.setRequestHeader, current jQuery (1.7.2) includes a username and password attribute with the $.ajax call.

$.ajax
({
  type: "GET",
  url: "index1.php",
  dataType: 'json',
  async: false,
  username: username,
  password: password,
  data: '{ "comment" }',
  success: function (){
    alert('Thanks for your comment!'); 
  }
});
share|improve this answer
6  
Shouldn't it be username and not user? Also it's not exactly the same: from the online docos and my experience it looks like it's not preemptive as some APIs require. In other words it sends the Authorization header only when a code 401 is returned. – Stefano Fratini Nov 19 '12 at 2:23
1  
@StefanoFratini - you are correct on both counts. Fixed the username field, and it's good to know about the preemptive auth vs responding only on challenge. Setting the header explicitly as in other answers will allow use of this 'passive' variant of basic auth. – jmanning2k Jan 24 at 18:39

Use the beforeSend callback to add a HTTP header with the authentication information like so:

var username = $("input#username").val();
var password = $("input#password").val();  

function make_base_auth(user, password) {
  var tok = user + ':' + password;
  var hash = btoa(tok);
  return "Basic " + hash;
}
$.ajax
  ({
    type: "GET",
    url: "index1.php",
    dataType: 'json',
    async: false,
    data: '{}',
    beforeSend: function (xhr){ 
        xhr.setRequestHeader('Authorization', make_base_auth(username, password)); 
    },
    success: function (){
        alert('Thanks for your comment!'); 
    }
});
share|improve this answer
you should notice that "btoa" used here for Base64 encryption is not supported in IE versions less that 10 and in some mobile platforms – SET May 15 at 7:42
also, according to this developer.mozilla.org/en-US/docs/DOM/window.btoa you should use btoa(unescape(encodeURIComponent(str))) – SET May 15 at 7:47

Or, simply use the headers property introduced in 1.5:

headers: {"Authorization": "Basic xxxx"}

Reference: jQuery Ajax API

share|improve this answer

Use the jQuery ajaxSetup function, that can set up default values for all ajax requests.

$.ajaxSetup({
  headers: {
    'Authorization': "Basic XXXXX"
  }
});
share|improve this answer

JSONP does not work with basic authentication so the jQuery beforeSend callback won't work with JSONP/Script.

I managed to work around this limitation by adding the user and password to the request (e.g. user:pw@domain.tld). This works with pretty much any browser but IE where authentication through URLs is not supported (the call will simply not be executed).

See http://support.microsoft.com/kb/834489 .

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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