I have a Blazor WASM website where I need to authenticate using Auth0 thru JavaScript. The user is given a window where they sign into Auth0.I can make the call successfully and I get back the following data:
{ accessToken: STRING, idToken: STRING, scope: STRING, error: STRING, refreshToken: STRING }How do I take these tokens and turn authenticate the user in the app?