I have been trying to connect to Skype using Skype4Py API.All goes well until I try to call a contact.The terminal shows it is calling the designated user but the call just doesn't connect.Is it something wrong with the code or has MicroSoft discontinued the support for such third party APIs. Here is what I found on MicroSoft's Support page for third party APIs
Code snippet for the same:
Found = False
for F in skype.Friends:
# print F.Handle
if F.Handle == CmdLine:
Found = True
print 'Calling ' + F.Handle + '..'
skype.PlaceCall(CmdLine)
break
if not Found:
# print 'Call target not found in contact list'
sys.exit()
This is the output of my code:
Connecting to Skype..
Calling live:ronakshah983..
The code stops at this and call isn't connected.I have also tried replacing username with address of the user but the same problem occurs. I have tried a lot of researching but can't figure out what is wrong. Any tips?