Hi Team ,
I am using the following code to print the custom username and ID.
ID is coming with the help of following code but name is not coming.
var ID = turnContext.Activity.From.Id;
var userName = turnContext.Activity.From.Name;
await turnContext.SendActivityAsync(MessageFactory.Text($"Hello and welcome- {userName}.{role}"), cancellationToken);
await turnContext.SendActivityAsync(MessageFactory.Text($"This Is your ID -{ID}"), cancellationToken);
can you please tel me is there any configuration for username in Azure portal side.
Thanks & Regards,
Preeti Bhati