private void AddFacebookOAuthStrategy(OAuthService authService) { var fbOptions = FacebookStrategyOptions.CreateDefault(); fbOptions.ClientId = Configuration["facebook:appid"]; fbOptions.ClientSecret = Configuration["facebook:appsecret"]; fbOptions.CallbackPath = "auth/facebook/callback"; var fbStrategy = new FacebookOAuthStrategy(fbOptions); authService.AddStrategy(fbStrategy); }
private void AddGoogleOAuthStrategy(OAuthService authService) { var gOptions = GoogleStrategyOptions.CreateDefault(); gOptions.ClientId = Configuration["google:clientid"]; gOptions.ClientSecret = Configuration["google:clientsecret"]; gOptions.CallbackPath = "auth/google/callback"; var gStrategy = new GoogleOAuthStrategy(gOptions); authService.AddStrategy(gStrategy); }