How do I implement login in a RESTful web service?

Web ServicesWeb ApplicationsRestLoginRestful Authentication

Web Services Problem Overview


I am building a web application with a services layer. The services layer is going to be built using a RESTful design. The thinking is that some time in the future we may build other applications (iPhone, Android, etc.) that use the same services layer as the web application. My question is this - how do I implement login? I think I am having trouble moving from a more traditional verb based design to a resource based design. If I was building this with SOAP I would probably have a method called Login. In REST I should have a resource. I am having difficulty understanding how I should construct my URI for a login. Should it be something like this:

http://myservice/{username}?p={password}

EDIT: The front end web application uses the traditional ASP.NET framework for authentication. However at some point in the authentication process I need to validate the supplied credentials. In a traditional web application I would do a database lookup. But in this scenario I am calling a service instead of doing a database lookup. So I need something in the service that will validate the supplied credentials. And in addition to validating the supplied credentials I probably also need some sort of information about the user after they have successfully authenticated - things like their full name, their ID, etc. I hope this makes the question clearer.

Or am I not thinking about this the right way? I feel like I am having difficulty describing my question correctly.

Corey

Web Services Solutions


Solution 1 - Web Services

As S.Lott pointed out already, we have a two folded things here: Login and authentication

Authentication is out-of-scope here, as this is widely discussed and there is common agreement. However, what do we actually need for a client successfully authenticate itself against a RESTful web service? Right, some kind of token, let's call it access-token.

Client) So, all I need is an access-token, but how to get such RESTfully?
Server) Why not simply creating it?
Client) How comes?
Server) For me an access-token is nothing else than a resource. Thus, I'll create one for you in exchange for your username and password.

Thus, the server could offer the resource URL "/accesstokens", for POSTing the username and password to, returning the link to the newly created resource "/accesstokens/{accesstoken}". Alternatively, you return a document containing the access-token and a href with the resource's link:

<access-token
id="{access token id goes here; e.g. GUID}"
href="/accesstokens/{id}"
/>
Most probably, you don't actually create the access-token as a subresource and thus, won't include its href in the response.
However, if you do so, the client could generate the link on its behalf or not? No!
Remember, truly RESTful web services link resources together in a way that the client can navigate itself without the need for generating any resource links.

The final question you probably have is if you should POST the username and password as a HTML form or as a document, e.g. XML or JSON - it depends... :-)

Solution 2 - Web Services

You don't "login". You "authenticate". World of difference.

You have lots of authentication alternatives.

HTTP Basic, Digest, NTLM and AWS S3 Authentication

  • HTTP Basic and Digest authentication. This uses the HTTP_AUTHORIZATION header. This is very nice, very simple. But can lead to a lot of traffic.

  • Username/Signature authentication. Sometimes called "ID and KEY" authentication. This can use a query string.

    ?username=this&signature=some-big-hex-digest

    This is what places like Amazon use. The username is the "id". The "key" is a digest, similar to the one used for HTTP Digest authentication. Both sides have to agree on the digest to proceed.

  • Some kind of cookie-based authentication. OpenAM, for example, can be configured as an agent to authenticate and provide a cookie that your RESTful web server can then use. The client would authenticate first, and then provide the cookie with each RESTful request.

Solution 3 - Web Services

Great question, well posed. I really like Patrick's answer. I use something like

-/users/{username}/loginsession

With POST and GET being handled. So I post a new login session with credentials and I can then view the current session as a resource via the GET.

The resource is a login session, and that may have an access token or auth code, expiry, etc.

Oddly enough, my MVC caller must itself present a key/bearer token via a header to prove that it has the right to try and create new login sessions since the MVC site is a client of the API.

Edit

I think some other answers and comments here are solving the issue with an out-of-band shared secret and just authenticating with a header. That's fine in many situations or for service-to-service calls.

The other solution is to flow a token, OAuth or JWT or otherwise, which means the "login" has already taken place by another process, probably a normal login UI in a browser which is based around a form POST.

My answer is for the service that sits behind that UI, assuming you want login and auth and user management placed in a REST service and not in the site MVC code. It IS the user login service.

It also allows other services to "login" and get an expiring token, instead of using a pre-shared key, as well as test scripts in a CLI or Postman.

Solution 4 - Web Services

Since quite a bit has changed since 2011...

If you're open to using a 3rd party tool, and slightly deviating from REST slightly for the web UI, consider http://shiro.apache.org.

Shiro basically gives you a servlet filter purposed for authentication as well as authorization. You can utilize all of the login methods listed by @S.Lott, including a simple form based authentication.

Filter the rest URLs that require authentication, and Shiro will do the rest.

I'm currently using this in my own project and it has worked pretty well for me thus far.

Here's something else people may be interested in. https://github.com/PE-INTERNATIONAL/shiro-jersey#readme

Solution 5 - Web Services

The first thing to understand about REST is that its a Token based resource access.Unlike traditional ways, access is granted based on token validation. In simple words if you have right token, you can access resources.Now there is lot of whole other stuff for token creation and manipulation.

For your first question, you can design a Restfull API. Credentials(Username and password) will be passed to your service layer.Service layer then validates these credentials and grant a token.Credentials can be either simple username/password or can be SSL certificates. SSL certificates uses the OAUTH protocol and are more secure.

You can design your URI like this- URI for token request-> http://myservice/some-directory/token? (You can pass Credentilals in this URI for Token)

To use this token for resource access you can add this [Authorization:Bearer (token)] to your http header.

This token can be utilized by the customer to access different component of your service layer. You can also change the expiry period of this token to prevent misuse.

For your second question one thing you can do is that you grant different token to access different resource components of your service layer. For this you can specify resource parameter in your token, and grand permission based on this field.

You can also follow these links for more information- http://www.codeproject.com/Articles/687647/Detailed-Tutorial-for-Building-ASP-NET-WebAPI-REST

http://www.vinaysahni.com/best-practices-for-a-pragmatic-restful-api

Solution 6 - Web Services

I have faced the same problem before. Login does not translate nicely to resource based design.

The way I usually handle it is by having Login resource and passing username and password on the parameter string, basically doing

GET on http://myservice/login?u={username}&p={password}

The response is some kind of session or auth string that can then be passed to other APIs for validation.

An alternative to doing GET on the login resource is doing a POST, REST purists will probably not like me now :), and passing in the creds in the body. The response would be the same.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionCorey BurnettView Question on Stackoverflow
Solution 1 - Web ServicesPatrickView Answer on Stackoverflow
Solution 2 - Web ServicesS.LottView Answer on Stackoverflow
Solution 3 - Web ServicesLuke PuplettView Answer on Stackoverflow
Solution 4 - Web ServicesHalf_DuplexView Answer on Stackoverflow
Solution 5 - Web ServicesRishabh SoniView Answer on Stackoverflow
Solution 6 - Web ServicesAlexView Answer on Stackoverflow