Identity Server 4 for NodeJS API
问题 I'm trying to figure out how to do the identity server 4 authentication below using NodeJS - way out of my comfort zone here. services.AddAuthentication(IdentityServerAuthenticationDefaults .AuthenticationScheme) .AddIdentityServerAuthentication( options => { options.Authority = "<authority-url>"; options.ApiName = "<api-url>"; }); I'm missing something in the flow here as the C# implementation isn't provided a secret or similar - so the token is probably verified via identity server? How