码迷,mamicode.com
首页 > 其他好文 > 详细

新版本IdentityServer4踩坑

时间:2020-12-31 11:45:00      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:turn   stat   encode   ret   style   resource   rgb   tco   enum   

1.报错“Invalid request”

新版本已经将form-data方式改为x-www-form-urlencoded

 

2.报错“Invalid Request”

新版本范围定义发生了改变

public static IEnumerable<ApiResource> GetApiResources()
        {
            return new[]
            {
                new ApiResource("UserApi", "用户获取API")
                {
                    Scopes={"UserApi"}
                }
            };
        }

添加了红色部分,另外还需要在配置中定义

public static IEnumerable<ApiScope> ApiScopes =>
            new ApiScope[]
            {
                new ApiScope("UserApi")
            };

在ConfigureService 中定义

.AddInMemoryApiScopes(ClientInitConfig.ApiScopes);  //定义范围

 

新版本IdentityServer4踩坑

标签:turn   stat   encode   ret   style   resource   rgb   tco   enum   

原文地址:https://www.cnblogs.com/AduBlog/p/14191177.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!