Skip to content

Instantly share code, notes, and snippets.

@bezysoftware
Created July 16, 2019 20:14
Show Gist options
  • Select an option

  • Save bezysoftware/99dfcd6b2eaaff518dc33220b91cebde to your computer and use it in GitHub Desktop.

Select an option

Save bezysoftware/99dfcd6b2eaaff518dc33220b91cebde to your computer and use it in GitHub Desktop.
public void ConfigureServices(IServiceCollection services)
{
// ...
services
.AddAuthentication()
.AddGoogle(c =>
{
c.ClientId = "xyz.apps.googleusercontent.com";
c.ClientSecret = "top-secret";
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment