With some OIDC providers - in my case Azure B2C - you will need to add in the following scope value: `options.Scope.Add(config["OpenIdConnect:ClientId"]);` This is in addition to: `options.ClientId = config["OpenIdConnect:ClientId"];` Steve
With some OIDC providers - in my case Azure B2C - you will need to add in the following scope value:
options.Scope.Add(config["OpenIdConnect:ClientId"]);This is in addition to:
options.ClientId = config["OpenIdConnect:ClientId"];Steve