Hi everybody.
Is it possible to query this technical details during call (here: Skypecast) through the api? Mainly I'n interested in the user-id that is shown in front of each name.
Thx
Yes, this can be done using Skype4COM or the API.
API or Skype4COM Example:https://developer.skype.com/Docs/ApiDoc/CALL_objectYou can use my Skype4COM Event Handler Example to test this quickly:
1. Download and save the PublishedFilesZipped.zip file from here:
http://forum.skype.com/index.php?showtopic=142821.
2. Right click on the PublishedFilesZipped.zip file and choose Extract All
3. Click the setup.exe to install, be patient.
4. Make sure the "Hide API Window" check box is NOT checed,
5. Join a Skypecast.
6. Look in the API Window ("bottom window") and notice the Call Id for the Skypecast, replace x with it in the command below:
7. In the command text box type and the use the ENTER key:
GET CALL x CONF_PARTICIPANTS_COUNT
This will tell you the number of participants in the Skypecast.
GET CALL x CONF_PARTICIPANT n
This is the username of the nth participant in a Skypecast call, the call type and status and the displayname of participants who are not the host. For example: CALL 59 CONF_PARTICIPANT 2 echo123 INCOMING_P2P INPROGRESS Echo Test Service.
8. You also can download the entire Microsoft Visual C# 2008 Express project and modify it easily to do this or anything else in C# using Skype4COM which is also located as a file SEHEv29.zip which can be downloaded at the same link above.
OR
Skype4COM example:1. Join a Skypecast
2. Copy this using Notepad and save as SkypeCast.vbs, double click on it to run it:
https://developer.skype.com/Docs/Skype4COML...Conferences_vbsThese examples also work for conference calls as well not just Skypecasts.