Reputation: 1
I am writing rest full web services for android and IOS app in Springs. I need to authenticate device and user before every service call. How can i do this? Is there any single process that can be used in every service? Is there any process of redirecting web service url to another service for authentication??
Thank you
Upvotes: 0
Views: 49
Reputation: 721
Look into HTTP Basic Auth, HTTP Digest Auth, and OAuth (which violates REST a little bit).
Upvotes: 1