Reputation: 3177
I have an authenticated user in a Blazor WebAssembly application via the OidcAuthentication provider. I know how to checkout all of the claims from the user object via the AuthenticationStateProvider
but is there anyway to get the raw oauth token in my Blazor pages?
Upvotes: 1
Views: 232
Reputation: 45596
Try to use IAccessTokenProvider.RequestAccessToken
hope this helps...
Upvotes: 3