Last active
August 28, 2020 19:31
-
-
Save RyanHill-MSFT/1003ffbe8bf76de42babbdbd7ff49f73 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services.AddIdentityServer(options => options.IssuerUri = "your expected issuer uri"); | |
// ensure the issuer matches in the JWT bearer token | |
services.Configure<JwtBearerOptions>("YourProjectNameAPI", | |
options => options.TokenValidationOptions.ValidIssuer = "your expected issuer uri"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment