i'm reading RESTful Web Services and on the first chapters they talk about taking advantages over the stuff HTTP already serves.
They introduce en example that does authentication to del.icio.us
using HTTP Basic Authentication
.
Until now, the apps I've been written in NodeJS implemeted Authentication by sending a POST
request from a form containing user
and a password
field.
How do you guys implement this? Do webpages implement auth via http basic auth
?
Which one is recommended?
Thanks in advance.