In chapter 7, when they get to the point of talking about configuring OpenID providers they list the following code in the Startup.Auth.cs file:
Code:
app.UseGoogleAuthentication();
However, when I look at the code in my Startup.Auth.cs file I see the following:
Code:
app.UseGoogleAuthentication(new GoogleOAuth2AuthenticationOptions()
{
ClientId = "",
ClientSecret = ""
});
Has been there an update to the way the Google OpenID provider is handled, since the publication of the book?