diff --git a/WebApp/Program.cs b/WebApp/Program.cs index c4ee10b..f9bd074 100644 --- a/WebApp/Program.cs +++ b/WebApp/Program.cs @@ -24,11 +24,11 @@ options.LogoutPath = $"/Identity/Account/Logout"; options.AccessDeniedPath = $"/Identity/Account/AccessDenied"; }); -builder.Services.AddAuthentication().AddFacebook(facebookOptions => -{ - facebookOptions.AppId = builder.Configuration.GetSection("Facebook:AppId").Get(); - facebookOptions.AppSecret = builder.Configuration.GetSection("Facebook:AppSecret").Get(); -}); +//builder.Services.AddAuthentication().AddFacebook(facebookOptions => +//{ +// facebookOptions.AppId = builder.Configuration.GetSection("Facebook:AppId").Get(); +// facebookOptions.AppSecret = builder.Configuration.GetSection("Facebook:AppSecret").Get(); +//}); builder.Services.AddDistributedMemoryCache(); builder.Services.AddSession(options =>