Fix secret name in code sample (#2373)

Fix secret name in code sample
pull/2374/head
Mike Harder 2016-12-12 13:28:55 -08:00 committed by Tom Dykstra
parent 0526200e59
commit 39c52c53c2
1 changed files with 1 additions and 1 deletions

View File

@ -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"]
});
```