Reputation: 21
How can we get the user id ( something like 1hRVUAus5JxCuZfhxPOjmKCtoZoO22ps0FBGKiM) of a skype contact using the skype username/handle
Upvotes: 1
Views: 608
Reputation: 429
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
}
Upvotes: 1