我有一个IdentityServer3服务器设置,它被配置为使用实体框架从数据库获取客户端和作用域信息。IdentityServer3.Core.Endpoints.DiscoveryEndpointController.d__11.MoveNext() in
c:\local\identity\server3\IdentityServer3System.Web.Http.Controllers.ApiControllerActionInvoker.d__0.MoveNext() in c:\local\identity\server3\Ident
我想为我的WebApi和IdentityServer编写验收测试。为了使事情尽可能简单,我从复制了整个示例项目,但添加了另一个项目,这基本上与控制台客户端一样,只是作为验收测试。namespace SpecTestingusing System;using System.Net.Http;using FluentAssertions;using Xbehave;
public class JustLikeConso
在IIS中运行IdentityServer3\Host.Web解决方案时,我可以使用TokenClient.RequestResourceOwnerPasswordAsync方法从控制台客户端进行身份验证但是,一旦我切换IdentityServer3\Host.Web以直接在IIS下运行,我就会得到以下错误:You do not have为了让IdentityServer3在IIS下工作,我需要配置什么不同的配置?