Search Results

2
votes

Best Practices for securing a REST API / web service

OAuth FTW! I've used it a few times, and also used some other methods (BASIC/DIGEST). I wholeheartedly suggest you use OAuth. The following link is the best tut I've seen on using OAuth: …
0
votes

How can an authentication key be passed to a restful web service?

If time isn't an issue implementing OAuth security may be useful. OAuth uses a public key, and also a secret. The mess is hashed (in most cases) and the server will use the public key + it's copy o …