From 39c52c53c270b2de02a8cee5ab30b04b057e851e Mon Sep 17 00:00:00 2001 From: Mike Harder Date: Mon, 12 Dec 2016 13:28:55 -0800 Subject: [PATCH] Fix secret name in code sample (#2373) Fix secret name in code sample --- aspnetcore/security/authentication/social/twitter-logins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"] }); ```