开发者

Authentication in Play! and RestEasy

开发者 https://www.devze.com 2023-03-11 23:35 出处:网络
I have a small application written in Play! which allows user registration and adding some content for registered users which other registered users can view. I\'d like to add some REST API to my appl

I have a small application written in Play! which allows user registration and adding some content for registered users which other registered users can view. I'd like to add some REST API to my application with [resteasy] module, and my question is: are there any best practic开发者_StackOverflow社区es or known solutions for performing authentication with rest to allow users managing their own content using resteasy in Play! ?

What I'm thinking about now, are two solutions:

  1. Client sends data and also sends his password and user name in some hashed or encoded form and this data is checked with credentials in database. If there is a match, request action occurs.
  2. Client authenticates in the first place and is returned sessionId or something which he has to add to all requests (cookie?).

Any help is appreciated.


You have some related answers on how to approach security here and here.

Personally I would try to create some OAuth 2 authentication if the API is to be used by 3rd parties. If it is private usage (only your apps will call it) other methods plus SSL should suffice.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号