AuthBot
AuthBot copied to clipboard
How to get Username
I'm using Authbot simply for Authentication. How do I get the username from AuthBot once they log in?
This isn't StackOverflow ;)
if(context.UserData.TryGetValue(ContextConstants.AuthResultKey, out AuthResult authResult))
{
await context.PostAsync($"You are {authResult.UserName}! :O");
}