Friday, June 29, 2012

Access Skype Functionality in Web Site

The Skype protocol allows users to deal with Skype related activities. The only condition is to have installed Skype  in client side. Getting a call, sending a IM, sending a voicemail and having a conference call  are still possible when the Skype username is known.

The following examples use 'echo123' demo user provided by Skype. Replace it with your friend's Skype username.

Call a Skype user

call Skype demo user

[sourcecode language="html"]
<a href="skype:echo123?call">call Skype demo user</a>
[/sourcecode]

Send a Skype IM message

Chat with Skype demo user

[sourcecode language="html"]
<a href="skype:echo123?chat">Chat with Skype demo user</a>
[/sourcecode]

Send a voicemail

Send voicemail to demo user

[sourcecode language="html"]
<a href="skype:echo123?voicemail">Send voicemail to demo user</a>
[/sourcecode]

Create a Skype conference call

conference call

[sourcecode language="html"]
<a href="skype:echo123;ANOTHER_USER?call">conference call</a>
[/sourcecode]

No comments:

Post a Comment

How to enable CORS in Laravel 5

https://www.youtube.com/watch?v=PozYTvmgcVE 1. Add middleware php artisan make:middleware Cors return $next($request) ->header('Acces...