...

/

Show the User Profile

Show the User Profile

Learn how to display the current user's data on the UI of our Blazor Server application.

It’s quite common to show user profile data on the UI after they have authenticated. Let’s see how we can do this in our Blazor Server application.

Authentication and user profile

Before going into the code, let’s understand what happens when the user authenticates with Auth0.

After the authentication, Auth0 generates a token in JSON Web Token (JWT) format. This token, known as the ID token, contains some information about the ...