Security----Authorization----介绍
Posted jqdy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Security----Authorization----介绍相关的知识,希望对你有一定的参考价值。
Introduction? 介绍
Authorization refers to the process that determines what a user is able to do. For example user Adam may be able to create a document library, add documents, edit documents and delete them. User Bob may only be authorized to read documents in a single library.
授权指的是确定一个用户可以做什么的过程。例如用户Adam可以新建文档库、添加文档、编辑文档以及删除。用户Bob只能被授权在某一个库中阅读文档。
Authorization is orthogonal and independent from authentication, which is the process of ascertaining who a user is. Authentication may create one or more identities for the current user.
授权是与身份验证正交并且独立的。身份验证是确认一个用户是谁的过程。身份验证可以为当前用户创建一个或多个身份。
Namespaces? 命名空间
Authorization components, including the AuthorizeAttribute
and AllowAnonymousAttribute
attributes are found in the Microsoft.AspNetCore.Authorization
namespace.
授权包括AuthorizeAttribute
和AllowAnonymousAttribute
属性,可在Microsoft.AspNetCore.Authorization
命名空间中找到。
以上是关于Security----Authorization----介绍的主要内容,如果未能解决你的问题,请参考以下文章
Security----Authorization----基于角色的授权
Spring Security:Authorization 授权
如何修复 Spring Security Authorization 标头未通过?