什么是“实体主体”?用于摘要身份验证?
我正在集成摘要身份验证,并且在下面的文档中看到“实体主体”(用于 auth-int 身份验证)?这是 HTML 标头和正文吗?或者只是 HTML 标头部分?
http://freeradius.org/rfc/rfc4590.html http://tools.ietf.org/html/rfc2069
I am integrating digest authentication and am seeing "entity-body" in the document below (for auth-int authentication)? Is this the HTML header and body? Or is it just the HTML header portion?
http://freeradius.org/rfc/rfc4590.html
http://tools.ietf.org/html/rfc2069
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里“实体”是一个HTTP概念。旧的 HTTP 1.1 术语表将其定义为“作为请求或响应的有效负载传输的信息。实体由实体头字段形式的元信息和实体主体形式的内容组成,如 第 7 节。”
较新的 HTTP 规范,例如 RFC 9110
HTTP 语义,不要使用术语“实体主体”。相反,它们指的是消息的“内容”。
因此,实体主体例如由整个 HTML 文档组成,从文档类型声明(如果存在)到结束标记
。实体标头是 HTML 文档外部的 HTTP 标头。
“Entity” is an HTTP concept here. The old HTTP 1.1 glossary defines it as “The information transferred as the payload of a request or response. An entity consists of metainformation in the form of entity-header fields and content in the form of an entity-body, as described in section 7.”
Newer HTTP specifications, such as RFC 9110
HTTP Semantics, do not use the term “entity-body”. Instead, they refer to the “content” of a message.
Thus, the entity body consists, for example, an entire HTML document, from the document type declaration (if present) down to the end tag
</html>
. The entity headers are HTTP headers, outside the HTML document.