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

I'm trying to write a REST-API server with NodeJS like the one used by Joyent, and everything is ok except I can't verify a normal user's authentication. If I jump to a terminal and do curl -u username:password localhost:8000 -X GET, I can't get the values username:password on the NodeJS http server. If my NodeJS http server is something like

var http = require('http');
http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Hello World\n');
}).listen(1337, "127.0.0.1");

, shouldn't I get the values username:password somewhere in the req object that comes from the callback ? How can I get those values without having to use Connect's basic http auth ?

share|improve this question
console.dir(req.headers) – stagas May 10 '11 at 14:53
console.dir(req.headers) only outputs { authorization: 'Basic am9hb2plcm9uaW1vOmJsYWJsYWJsYQ==', 'user-agent': 'curl/7.21.3 (x86_64-pc-linux-gnu) libcurl/7.21.3 OpenSSL/0.9.8o zlib/1.2.3.4 libidn/1.18', host: 'localhost:8000', accept: '/' } – João Pinto Jerónimo May 10 '11 at 15:15

4 Answers

up vote 30 down vote accepted

The username:password is contained in the Authorization header as a base64-encoded string.

Try this:

http.createServer(function(req,res){
  var header=req.headers['authorization']||'',        // get the header
      token=header.split(/\s+/).pop()||'',            // and the encoded auth token
      auth=new Buffer(token, 'base64').toString(),    // convert from base64
      parts=auth.split(/:/),                          // split on colon
      username=parts[0],
      password=parts[1];

  res.writeHead(200,{'Content-Type':'text/plain'});
  res.end('username is "'+username+'" and password is "'+password+'"');

}).listen(1337,'127.0.0.1');

Detail on http authorization can be found at http://www.ietf.org/rfc/rfc2617.txt

share|improve this answer
Don't forget to parse out the "Basic", i.e.: 'Basic abcdef0123456789' === req.headers.authorization – CoolAJ86 Jun 14 '12 at 9:50
The third line in the example already does this by splitting the header on whitespace to produce ["Basic","abcdef0123456789"] and popping off the last value, which will be the authorization token. – Rob Raisch Jun 25 '12 at 21:44

If you're using express, you can use the connect plugin (which ships with express):

//Load express
var express = require('express');

//User validation
var auth = express.basicAuth(function(user, pass) {     
   return (user == "super" && pass == "secret");
},'Super duper secret area');

//Password protected area
app.get('/admin', auth, routes.admin);
share|improve this answer

You can use node-http-digest for basic auth or everyauth, if adding authorization from external services are in you roadmap.

share|improve this answer

The restify framework (http://mcavage.github.com/node-restify/) includes an authorization header parser for "basic" and "signature" authentication schemes.

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.