I am following the Authenticating Angular2 with Oidc-client and trying to implement the authentication part. Because the angular2 is using
{ provide: LocationStrategy, useClass: HashLocationStrategy }
my urls will change to for eg: http://localhost:4200/#/dashboard.
In the identityserver and also on the client side, i am using redirect_uri as
http://localhost:4200/dashboard
But after give username and password, the pages redirects to http://localhost:4200/#/id_token and considered as invalid route.
Can anyone help how to solve this when using hashlocationstrategy in angular application and how to configure the identityserver?
Thanks