Sossenbinder
How to authenticate a chrome extension using blazor server
So your blazor app uses a regular asp net backend with identity for login? I think what might work is
- Your chrome extension opens the web auth flow https://developer.chrome.com/docs/extensions/reference/api/identity#method-launchWebAuthFlow
- The popup will be forwarded to your login page
- Login page does it's thing, and in the end you'd probably redirect and therefore transfer the final token in the redirect which your chrome extension can then capture in the callback
10 replies