Auralytical / Discord.OAuth2

ASP.Net Core middleware that enables an application to support Discord's OAuth 2.0 authentication workflow.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Discord.OAuth2

NuGet MyGet Build status

ASP.Net Core middleware that enables an application to support Discord's OAuth 2.0 authentication workflow.

Based on ASP.Net Core Facebook OAuth

Usage

services.AddAuthentication()
    .AddDiscord(x =>
    {
        x.AppId = Configuration["Discord:AppId"];
        x.AppSecret = Configuration["Discord:AppSecret"];
        x.Scope.Add("guilds");
    });

About

ASP.Net Core middleware that enables an application to support Discord's OAuth 2.0 authentication workflow.

License:MIT License


Languages

Language:C# 100.0%