EaCloud.Identity
9.0.1.1
dotnet add package EaCloud.Identity --version 9.0.1.1
NuGet\Install-Package EaCloud.Identity -Version 9.0.1.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="EaCloud.Identity" Version="9.0.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EaCloud.Identity" Version="9.0.1.1" />
<PackageReference Include="EaCloud.Identity" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add EaCloud.Identity --version 9.0.1.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: EaCloud.Identity, 9.0.1.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package EaCloud.Identity@9.0.1.1
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=EaCloud.Identity&version=9.0.1.1
#tool nuget:?package=EaCloud.Identity&version=9.0.1.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
EaCloud 身份认证组件
说明
EaCloud 身份认证组件,基于 AspNetCore.Identity 和 EaCloud数据仓储系统 的身份认证实现。
功能结构
- EaCloud.Identity
- 身份认证Authentication
- 实现用户Claims提供器
IUserClaimsProvider - Cookie
- 实现Cookie登录,并刷新在线用户信息
- JwtBearer
- 实现 Jwt Token 的构建功能
- 实现 Jwt Token 的刷新机制
- OAuth2
- 实现
微信、钉钉、抖音、QQ、Microsoft、Github三方登录功能
- 实现
- 实现用户Claims提供器
- 身份标识Identity
- 实现用户数据管理功能,以及
用户角色、用户组织机构的绑定管理 - 实现角色数据管理功能,以及
用户角色、角色组织机构的绑定管理 - 实现组织机构数据树形管理功能,实现用户登录组织及部门,可用于后续的数据权限处理
- 重写UserStore,RoleStore,使用现有IRepository进行数据存储
- 实现第三方OAuth2认证系统的整合
- 在线用户信息缓存系统,实现用户信息刷新
- 实现用户数据管理功能,以及
- 身份认证Authentication
用法
- 通过nuget引用
EaCloud.Identity程序集
Install-Package EaCloud.Identity
- 在
appsettings.json中 的EaCloud节点下添加如下配置节点
{
//第三方OAuth2登录
"OAuth2": {
//微信
"WeChat": {
"ClientId": "你的微信AppId",
"ClientSecret": "你的微信AppKey",
"Enabled": true //是否启用
},
//钉钉
"DingTalk": {
"ClientId": "你的钉钉AppId",
"ClientSecret": "你的钉钉AppKey",
"Enabled": true //是否启用
},
//抖音
"TikTok": {
"ClientId": "你的抖音AppID",
"ClientSecret": "你的抖音AppKey",
"Enabled": true //是否启用
},
//腾讯QQ
"QQ": {
"ClientId": "你的QQ互联项目AppId",
"ClientSecret": "你的QQ互联项目AppKey",
"Enabled": false //是否启用
},
//微软账户
"Microsoft": {
"ClientId": "你的微软项目ClientId",
"ClientSecret": "你的微软项目ClientSecret",
"Enabled": false //是否启用
},
//GitHub账户
"GitHub": {
"ClientId": "你的GitHub项目ClientId",
"ClientSecret": "你的GitHub项目ClientSecret",
"Enabled": false //是否启用
}
},
//JWT身份认证选项
"Jwt": {
"Issuer": "eacloud jwt issuer by sanqing", //发行方
"Audience": "eacloud jwt audience by sanqing", //订阅方
"Secret": "{26289316-2BE5-4500-8925-71DDBBB86E5E}", //密钥
"AccessExpireMins": 15, //15分钟 //AccessToken有效期分钟数
"RefreshExpireMins": 10080, // 7天 //RefreshToken有效期分钟数
"IsRefreshAbsoluteExpired": false, //RefreshToken是否绝对过期
"Enabled": true //是否启用
},
//Cookie身份认证选项
"Cookie": {
"CookieName": "Cookie名称", //Cookie名称
"LoginPath": "登录地址", //登录地址
"LogoutPath": "登出地址", //登出地址
"AccessDeniedPath": "无权限地址", //无权限地址
"ReturnUrlParameter": "返回Url参数名,默认为 ReturnUrl", //返回Url参数名,默认为 ReturnUrl
"ExpireMins": 5, //过期分钟数
"SlidingExpiration": true, //是否滑动过期
"Enabled": false //是否启用
},
}
交流
![]() |
![]() |
|---|---|
| QQ群号:863605868 | 微信号:SeonHu |
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net9.0
- Authentication.GitHub.Core (>= 1.0.0)
- EaCloud.AspNetCore (>= 9.0.1.1)
- Microsoft.AspNetCore.Authentication.OAuth (>= 2.3.0)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on EaCloud.Identity:
| Package | Downloads |
|---|---|
|
EaCloud.Authorization.Functions
EaCloud 功能权限组件,API功能权限的设计实现。 |
|
|
EaCloud.Pack.Identity
EaCloud 身份认证模块,封装基于 EaCloud 身份认证组件的功能实现。 |
|
|
EaCloud.Authorization.Datas
EaCloud 数据权限组件,对应用中数据权限进行授权的设计实现。 |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 9.0.1.1 | 455 | 10/22/2025 |
| 9.0.0.9 | 479 | 8/12/2025 |
| 9.0.0.8 | 359 | 7/5/2025 |
| 9.0.0.7 | 474 | 6/25/2025 |
| 9.0.0.6 | 480 | 6/18/2025 |
| 9.0.0.5 | 469 | 6/14/2025 |
| 9.0.0.4 | 463 | 5/8/2025 |
| 9.0.0.3 | 493 | 4/23/2025 |
| 9.0.0.2 | 497 | 4/11/2025 |
| 9.0.0.1 | 460 | 3/21/2025 |
| 8.0.1.9 | 545 | 11/15/2024 |
| 8.0.1.8 | 494 | 11/13/2024 |
| 8.0.1.7 | 523 | 10/9/2024 |
| 8.0.1.6 | 525 | 9/29/2024 |
| 8.0.1.5 | 543 | 9/13/2024 |
| 8.0.1.4 | 572 | 8/10/2024 |
| 8.0.1.3 | 511 | 8/7/2024 |
| 8.0.1.2 | 579 | 8/7/2024 |
| 8.0.1.1 | 533 | 8/7/2024 |
| 8.0.0.9 | 519 | 8/7/2024 |
Loading failed

