Solution Review: Restricting Write Requests
Review the solution of the "Restricting Write Requests" challenge.
We'll cover the following...
Overview
The complete solution can be found in the following playground:
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}The final setup with the secured POST endpoint
...
Ask