开发者

how to call a land line through a website?

开发者 https://www.devze.com 2023-02-15 18:17 出处:网络
i have seen a fe开发者_如何学编程w sites like prankdial that lets you spoof your number and make a call to a persons cell or home number how is this being done from a website?You can use COM\'s to acc

i have seen a fe开发者_如何学编程w sites like prankdial that lets you spoof your number and make a call to a persons cell or home number how is this being done from a website?


You can use COM's to access your local skype installation to dial a number for you, take a look at this library:

  • PHPLibrary
  • Skype COM's API Guide
  • Skype Developers

You can perform mosts tasks via COM's such as calls, chat, contacts and send messages:

$skype = new COM("Skype4COM.Skype");
$skype->sendSms("+1234567890", "SMS text goes here");

You can download the Native

0

精彩评论

暂无评论...
验证码 换一张
取 消