Skip to content

Instantly share code, notes, and snippets.

@mclasson
Created August 3, 2017 10:05
Embed
What would you like to do?
app.Map("/login-twitter", login =>
{
login.Run(async context =>
{
await context.ChallengeAsync("Twitter", new AuthenticationProperties() {
RedirectUri = "/" });
return;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment