Check the API Protection
Learn to check if the API called by the Blazor WebAssembly application is protected.
We'll cover the following...
The Blazor WebAssembly application seems to be protected from unauthorized access. While the user needs to be authenticated to access its pages, the API providing the weather forecast data is not protected. Let’s see how we can check this.
The ASP.NET Core API
The Blazor WebAssembly application has been created as an ASP.NET Core hosted application. This means that the WebAssembly code of the application is served by an ASP.NET Core web application.
In addition, this ASP.NET application implements a web API ...