Jyothis Jose
Jyothis Jose

Reputation: 21

Can we get the skype user id using the skype handle

How can we get the user id ( something like 1hRVUAus5JxCuZfhxPOjmKCtoZoO22ps0FBGKiM) of a skype contact using the skype username/handle

Upvotes: 1

Views: 608

Answers (1)

Samadhan
Samadhan

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

Related Questions