在RESTful API中使用会话真的违反了RESTful吗?我已经看到了许多意见,但我不相信会议是不安宁的。在我看来:
rest不禁止身份验证(否则在RESTful服务中几乎没有用处)
身份验证是通过在请求中发送一个身份验证令牌来完成的,通常是头
这个身份验证令牌需要以某种方式获得,并且可能会被撤销,在这种情况下需要更新
身份验证令牌需要由服务器验证(否则就不是身份验证)
那么会话是如何违背这一点的呢?
客户端,会话是使用cookie实现的
cookie只是一个额外的HTTP报头
会话cookie可以在任何时候获得和撤销
如果需要,会话cookie可以有无限的生存时间
会话id(身份验证令牌)在服务器端得到验证
As such, to the client, a session cookie is exactly the same as any other HTTP header based authentication mechanism, except that it uses the Cookie header instead of the Authorization or some other proprietary header. If there was no session attached to the cookie value server-side, why would that make a difference? The server side implementation does not need to concern the client as long as the server behaves RESTful. As such, cookies by themselves should not make an API RESTless, and sessions are simply cookies to the client.
我的假设错了吗?是什么使会话cookie不安分?
Cookies are not for authentication. Why reinvent a wheel? HTTP has well-designed authentication mechanisms. If we use cookies, we fall into using HTTP as a transport protocol only, thus we need to create our own signaling system, for example, to tell users that they supplied wrong authentication (using HTTP 401 would be incorrect as we probably wouldn't supply Www-Authenticate to a client, as HTTP specs require :) ). It should also be noted that Set-Cookie is only a recommendation for client. Its contents may be or may not be saved (for example, if cookies are disabled), while Authorization header is sent automatically on every request.
另一点是,要获得授权cookie,您可能需要首先在某个地方提供您的凭据。如果是这样,那不就是不安分吗?简单的例子:
您尝试没有cookie的GET /a
你得到了一个授权请求
然后授权POST /auth
你会得到Set-Cookie
您尝试GET /a与cookie。但是在这种情况下GET /a的行为是幂等的吗?
总而言之,我认为如果我们访问某些资源并且需要进行身份验证,那么我们必须在同一资源上进行身份验证,而不是在其他任何地方。
HTTP事务,基本访问身份验证,不适合RBAC,因为基本访问身份验证每次都使用加密的用户名:密码进行标识,而RBAC中需要的是用户希望用于特定调用的Role。
RBAC不验证用户名上的权限,但验证角色上的权限。
您可以像这样进行连接:usernameRole:password,但这是一种糟糕的做法,而且效率也很低,因为当一个用户拥有更多角色时,身份验证引擎将需要在连接中测试所有角色,并且每次调用都需要再次测试。这将破坏RBAC最大的技术优势之一,即非常快速的授权测试。
因此,使用基本的访问身份验证无法解决这个问题。
为了解决这个问题,会话维护是必要的,根据一些回答,这似乎与REST相矛盾。
这就是我喜欢REST不应被视为宗教的答案。在复杂的业务案例中,例如在医疗保健领域,RBAC是绝对常见和必要的。如果他们不被允许使用REST,那将是一个遗憾,因为所有的REST工具设计者都将REST视为一种宗教。
对我来说,在HTTP上维护会话的方法并不多。可以使用带有sessionId的cookie,也可以使用带有sessionId的报头。
如果有人有别的想法,我很乐意听听。