RESTful Authentication

前端 未结 14 2024
死守一世寂寞
死守一世寂寞 2020-11-21 22:56

What does RESTful Authentication mean and how does it work? I can\'t find a good overview on Google. My only understanding is that you pass the session key (remeberal) in

14条回答
  •  忘了有多久
    2020-11-21 23:35

    It's certainly not about "session keys" as it is generally used to refer to sessionless authentication which is performed within all of the constraints of REST. Each request is self-describing, carrying enough information to authorize the request on its own without any server-side application state.

    The easiest way to approach this is by starting with HTTP's built-in authentication mechanisms in RFC 2617.

提交回复
热议问题