vote up 1 vote down star
3

Hi guys. I am designing a web api. I need to let the user authenticate themselves. I am a little hesistant to let the user pass in their username/password in cleartext.. something like: api.mysite.com/auth.php?user=x&pass=y

Another option i read about was Base64 encoding the username/password and then sending a HTTP request. So does that mean that on the server side;I would _GET['user'] and _GET['password'] and then somehow decode them?

Is that what twitter does: http://apiwiki.twitter.com/REST+API+Documentation#Authentication ?

flag

31% accept rate

5 Answers

vote up 0 vote down

Please do not use regular usename/password authentication for the api. People really shouldn't be forced to put credentials from foreign services in a mashup service.

Please consider using oauth http://oauth.net/ or at least some challenge-response based system, like Eugene suggested.

One easy way would be to let the guest-service generate a token which is connected to his app and a user. If you put in some work you could even make the tokencreation secure to have only allowed foreign services with some private/public-key mechanisms.

The user has to authorize this token in your app before the guest service can use it to get authenticated.

link|flag
Thanks for your feedback. I am going to implement the challenge-response system. – shergill Mar 10 at 15:18
vote up 2 vote down

As mentioned by truppo, first use SSL.

What many web services do is have an "authenticate" service that returns a token that is then used later, and can be used in plaintext, since it's only valid for a limited amount of time. When it expires, the client simply does another authenticate.

The key benefit of this is that it reduces the number of SSL requests, which lightens the load on the server.

link|flag
vote up 3 vote down

Just this week the IETF published a new draft discussing security properties of the various authentication mechanisms in HTTP. You should find helpful information there.

Personally I'd recommend at least to read about digest authentication and analyze if that's suitable for you.

Using SSL might also be an option. However, it also addresses additional issues at the expense of performance, cachability and others. It keeps the payload data confidential. If this is a requirement, then it's your way to go.

link|flag
vote up 2 vote down

If this is a webservice, you'd better use more secure form of authentication. Look for example, at the LiveJournal protocol: Challenge-Response.

link|flag
how does twitter api manage this: apiwiki.twitter.com/REST+API+Documentation#Authen…? – shergill Mar 10 at 14:55
vote up 3 vote down

Base64 is no protection at all. Use SSL for real security.

link|flag
then how does twitter api use security? apiwiki.twitter.com/REST+API+Documentation#Authen… – shergill Mar 10 at 14:52
They are using HTTP Basic Auth, which is plain text, which the poster did not want. – truppo Mar 10 at 16:15
i'm just wondering.. if it is not a problem/issue for twitter; then is it really such a big deal? – shergill Mar 10 at 19:02

Your Answer

Get an OpenID
or

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