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 currently creating an authentication system on front of a public web API for a web application. Given that each user account has an API key and each request must be authenticated, I have two alternatives:

  1. Using an HTTP Basic Authentication, like GitHub does.

    Requests must be sent to the URL

    http://api.example.com/resource/id
    with basic authentication
    username: token
    password: the api key
    
  2. Passing the API Token as querystring parameter.

    Requests must be sent to the URL

    http://api.example.com/resource/id?token=api_key
    

There's also a third option which is passing the token within the URI, but I honestly don't like that solution.

Which solution would you adopt and why?

share|improve this question
What about a cookie with the token? Is that an alternative? – Arne Burmeister Feb 11 '11 at 10:50
2  
Not really. API Clients usually are scripts and they tend to not support cookies or sessions. – Simone Carletti Feb 11 '11 at 10:54
The github link is broken. – jakeorr Apr 16 at 15:38

3 Answers

up vote 5 down vote accepted

I think that HTTP Basic Auth should be ok but just for really simple needs.

The complete (and final) solution IMHO is to implement an OAuth provider. It's not complex, it's a simple protocoll and gives to you a lot's of flexibility. In addition it seems to be the current trend as many big players implements it and it is supported from many many libraries

share|improve this answer
1  
I think OAuth would be too much for this kind of service. Why would you choose Basic Auth in this case? – Simone Carletti Feb 11 '11 at 15:04
in this case HTTP Basic Auth seems to me more elegant. Mainly because it is stardard and nobody needs to think something new. – Diego Giorgini Feb 12 '11 at 0:32
Could you explain the limitations of HTTP-basic auth as compared to OAuth? – elsurudo Sep 13 '12 at 16:04
3  
This dangerous, given the URLs listed above are NOT https, but plain old http://. Anyone can use a tool like Firesheep to grab the API key and token, since Basic Auth does not provide any privacy for those credentials. You should only consider Basic Auth when used over http*s* as most API providers do, including Github. – Tim Shadel Dec 13 '12 at 17:26

Many times I had to think about how to authenticate users/requests onto APIs and after comparing more solutions I ended up with using the Amazon's solution where I don't need or I can't use OAuth. This solution is based on signatures that prevents from "man in the middle" problems as Basic Auth and passing a simple token are sending plain text data. Yes you can add ssl but this will add complexity to the system...

share|improve this answer

I would prefer using the token solution. If you don't have actual users with their own username and password, then it feels like you are using the Basic Auth construct not as intended. Not that that's necessarily wrong, but not as clean, IMO. It also removes the need to use custom headers and I think it makes implementation on both sides easier and cleaner. The next question I would be asking is if you should be using two-factor authentication or if you need to manage sessions at all.

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.