simple authorisation in web api
Posted
by monthon1
on Stack Overflow
See other posts from Stack Overflow
or by monthon1
Published on 2010-05-26T16:06:52Z
Indexed on
2010/05/26
16:21 UTC
Read the original article
Hit count: 282
I want to make nice and clean api; I'm making site and I want to offer the ability to mobile apps use web API of my site.
I don't want to use oAuth, becouse the mobile and embedded applications that are facing the biggest hurdle, as they may not be able to bring up and/or control the web browser. Also its a little complicate.
I know, that HTTP basic authorisation is not safe, but it's so simple... I want to use it in my api. I have somee users logins and their passwords (md5-encoded) in mysql base, but how to use those data in this HTTP basic authorisation?
© Stack Overflow or respective owner