问题
How can we get the user id ( something like 1hRVUAus5JxCuZfhxPOjmKCtoZoO22ps0FBGKiM) of a skype contact using the skype username/handle
回答1:
yes, Jyothis Jose you can get userId and userName using following code in c#
if(activity.From.Name != null)
{
string userName= activity.From.Name;
string userID=activity.From.Id;
//Perform your action
}
来源:https://stackoverflow.com/questions/40377169/can-we-get-the-skype-user-id-using-the-skype-handle