You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
4 years ago | |
|---|---|---|
| .. | ||
| LINGYUN/Abp/Aliyun/Authorization | 6 years ago | |
| FodyWeavers.xml | 4 years ago | |
| FodyWeavers.xsd | 4 years ago | |
| LINGYUN.Abp.Aliyun.Authorization.csproj | 4 years ago | |
| README.md | 6 years ago | |
README.md
LINGYUN.Abp.Aliyun.Authorization
阿里云基础认证模块, 目前只需要访问控制功能, 因此只定义了AppKeyId和AccessKeySecret。
配置使用
模块按需引用,使用到阿里云的模块基本都需要依赖于此
事先定义appsettings.json文件
{
"Aliyun": {
"Auth": {
"AccessKeyId": "你的阿里云访问标识",
"AccessKeySecret": "你的阿里云访问密钥"
}
}
}
[DependsOn(typeof(AbpAliyunAuthorizationModule))]
public class YouProjectModule : AbpModule
{
// other
}