diff --git a/aspnetcore/security/authentication/social/twitter-logins.md b/aspnetcore/security/authentication/social/twitter-logins.md index 49ef804232..0bf0e14012 100644 --- a/aspnetcore/security/authentication/social/twitter-logins.md +++ b/aspnetcore/security/authentication/social/twitter-logins.md @@ -75,7 +75,7 @@ Add the Twitter middleware in the `Configure` method in `Startup.cs`: ```csharp app.UseTwitterAuthentication(new TwitterOptions() { - ConsumerKey = Configuration["Authentication:Twitter:ConsumerId"], + ConsumerKey = Configuration["Authentication:Twitter:ConsumerKey"], ConsumerSecret = Configuration["Authentication:Twitter:ConsumerSecret"] }); ```