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