python - I can't place a call using Skype4Py API in Windows.The application goes on wait state and then call drops. -


i have been trying connect skype using skype4py api.all goes until try call contact.the terminal shows calling designated user call doesn't connect.is wrong code or has microsoft discontinued support such third party apis. here found on microsoft's support page third party apis

code snippet same:

found = false 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 output of code:

connecting skype..

calling live:ronakshah983..

the code stops @ , call isn't connected.i have tried replacing username address of user same problem occurs. have tried lot of researching can't figure out wrong. tips?

found solution finally.the problem skype has disabled third party apis latest version(version 7.x).i installed older version(version 6.x) , disabled auto update feature in it.the same code worked on older skype version.

note:finding older reliable version of skype time consuming since have removed older versions official website. found older version on page


Comments

Popular posts from this blog

python - How to insert QWidgets in the middle of a Layout? -

python - serve multiple gunicorn django instances under nginx ubuntu -

module - Prestashop displayPaymentReturn hook url -