Skip to content

ivao-italy/AspNet.Security.OAuth.Ivao

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AspNet.Security.OAuth.Ivao

Project made with ❤️ by IVAO Italy division.

Discord

AspNet.Security.OAuth is a security middleware that you can use in your ASP.NET Core application to support IVAO authentication provider.

Getting started

Adding IVAO authentication to your application is a breeze and just requires a few lines in your Program.cs file:

builder.Services.AddAuthentication(options =>
{
    options.DefaultScheme = CookieAuthenticationDefaults.AuthenticationScheme;
    options.DefaultChallengeScheme = IvaoAuthenticationDefaults.AuthenticationScheme;
})
.AddCookie()
.AddIvao();

...

app.UseAuthentication();
app.UseAuthorization();

See the sample project directory for a complete sample using ASP.NET Core 6 and supporting ivao login provider.

Ivao Login v1 Documentation

Docs can be found on the international forum. IVAO Account is required.

Support

Need help or wanna share your thoughts? Don't hesitate to join us on Discord:

License

This project is licensed under the Apache License. This means that you can use, modify and distribute it freely. See https://www.apache.org/licenses/LICENSE-2.0.html for more details.