AspNetCoreOpeniddict
AspNetCoreOpeniddict copied to clipboard
Can not open a tab new tab in angular http://localhost:4200/dataeventrecords
After I login the app open in root path. than I click and try to open dataeventrecords in a different tab. But it will reroute to the root url after a reload. The url change to http://localhost:4200/code? and then the rerouting is happing. What should I do to open the new tab in http://localhost:4200/dataeventrecords.
I hope you will help me the solve this issue.
In an SPA application the default storage is session storage (per Tab) You could switch to local storage and SSO over tabs will work, but this is less safe and leaves you more open to XSS attacks. Another solution would be to switch to a serve rendered application or BFF with Angular/React/Blazor which is the same thing.