Does IdentityServer4.AccessTokenValidation support authentication of multiple authorities?
Normally, I setup the trust for my own single authority like so:
.AddIdentityServerAuthentication(options =>
{
options.Authority = "http://localhost:5000";
options.RequireHttpsMetadata = false;
options.ApiName = "TestApi";
});
I need to auth tokens from my own authority as well as one other trusted external authority. Not sure how to do it.