Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 1.77 KB

README.md

File metadata and controls

39 lines (26 loc) · 1.77 KB

Example ASP.NET Core web application

An ASP.NET Core web application using FusionAuth as the identity server. This application will use an OAuth Authorization Code workflow to log users in.

You need to have dotnetcore installed to run this code. Please note that this application uses netcore 3.1.

Set up FusionAuth as documented in the blog post.

Windows Install

To deploy and run on Windows, assuming you have the dotnetcore 3.1 runtime installed:

  • Open up a terminal (these instructions assume a cmd window)
  • cd SampleApp
  • Update appsettings.json with the FusionAuth application ClientId and the Authority as necessary.
  • 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.

Mac Install

To run on a macos, use the scripts here to install dotnetcore.

  • cd SampleApp
  • Update appsettings.json with the FusionAuth application ClientId and the Authority as necessary.
  • export SampleApp__ClientSecret="..."
  • dotnet publish -r osx.10.14-x64
  • bin/Debug/netcoreapp3.1/osx.10.14-x64/publish/SampleApp

Visit the local webserver at http://localhost:5000/ and sign in.

Misc

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

We also have a dotnetcore5 example application.