An ASP.NET Core web application using FusionAuth as the identity server.
You need to have dotnetcore installed to run this code.
Set up fusionauth as documented in the blog post.
To deploy and run:
- Open up a terminal (these instructions assume a
cmd
window) cd SampleApp
- Update
appsettings.json
with the FusionAuth applicationClientId
- Export the client secret as an environment variable:
set SampleApp__ClientSecret="..."
- Publish the binary:
dotnet publish -r win-x64
- Run the application:
bin\Debug\netcoreapp3.1\win-x64\publish\SampleApp.exe
Visit the local webserver at http://localhost:5000/
and sign in.
See more deployment options: https://docs.microsoft.com/en-us/dotnet/core/deploying/
See the blog post for more details about this code: Securing an ASP.NET Core Razor Pages app with OAuth