This is my current setup:
- IdentityServer4
- API (Bearer authentication)
- SPA page (oidc-client implicit flow redirected to IdentityServer4 Quickstart UI)
- Native application (written i C#)
The native application already have the users credentials. I want to provide a web link to the SPA page from the native application, but I don't want to force the user to login again when navigating to the web. Instead I want to move their current session to the web page.
Is it possible to "inject" the access token into the oidc-client? (using a url fragment). Or is there any other flow or way to make this work?