I'm trying to use cross domain authentication in my Angular/.net Core 2.0 app using OpenId.
for this purpose I'm using angular-auth-oidc-client package. the authentication API is behind a load balancer and I'm currently getting an error in browser .
Failed to load https://xyz//.well-known/openid-configuration: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:5002' is therefore not allowed access. The response had HTTP status code 404.
How to add equivalent of ForwardedHeadersOptions
(.net core) in Angular 4?
Is there any other package for Angular
which provides the option to set the ForwardedHeaders ?