[ACCEPTED]-Can I embed Skype Chat into my website-skype

Accepted answer
Score: 14

Have you tried <a href="skype:-skype-name-?chat">Start chat</a> ?

0

Score: 10

UPDATED 2019-11-23

Skype Webcontrol has been removed from the Microsoft platform. Could 17 be related to the release of Skype for Web.

In this moment 16 it's strongly recommended to use an alternative 15 solution like Facebook Web Messenger for your site.


UPDATED 2018-09-05 (This information is not valid anymore)

Yes, now it's 14 possible on the following link Skype Webcontrol

The HTML 13 code to add a call button is:

<span class="skype-button rounded" data-contact-id="skype-user-name"></span>
<script src="https://swc.cdn.skype.com/sdk/v1/sdk.min.js"></script>

Set the "skype-user-name" and 12 voilá... nothing else is required.


OLD POST:

No, you 11 cannot embed Skype chat in your website 10 by the time this post is done. But these 9 are some resources that might be useful:

This 8 is the official site for creating a Skype 7 button in your website for chat or call: https://www.skype.com/en/developer/create-contactme-buttons/

But I will 6 have to advise that your visitors require 5 Skype Software installed and it's correspondent 4 extension installed. On mobile browsers 3 it will require only the Skype App installed.

This 2 is the HTML code for the website:

SKYPE CALL

<a href="skype:USERNAME?call">call using Skype</a>

SKYPE CHAT

<a href="skype:USERNAME?chat">Chat with Skype</a>

SKYPE VOICEMAIL

<a href="skype:USERNAME?voicemail">Leave a voicemail</a>

Source: http://www.vividstar.co.uk/2012/09/embedding-skype-html-on-your-website/

Skype 1 URI API for the Web: https://msdn.microsoft.com/en-us/library/office/dn745883.aspx

Skype API: https://www.skype.com/en/developer/

Score: 2

Someone may found this helpful.

<span class="skype-button bubble " data-contact-id="your-skype-id"></span>
<script src="https://swc.cdn.skype.com/sdk/v1/sdk.min.js"></script>

found here..

0

Score: 1

It is only possible to start the locally 7 installed Skype-client on the visitors computer 6 from your website.

Skype provides an api 5 for this:

http://dev.skype.com/skype-uri

And here you'll find a Skype URI 4 Tutorial:

http://dev.skype.com/skype-uri/skype-uri-tutorial-webpages

What you're looking for is a live 3 support chat. There are plenty commercial 2 offerings out there. Maybe you can also 1 find some free script.

Score: 1

Yes you can do this using Skype Web SDK. https://msdn.microsoft.com/en-us/library/dn962133(v=office.16).aspx

0

Score: 1

These answers are old and not relevant at 4 the moment. Using the unofficial NodeJS 3 API for skype, one can embed the newer cloud 2 based chat groups.

https://github.com/ShyykoSerhiy/skyweb (I am in no way associated 1 with this project)

var skyweb = new Skyweb();
skyweb.login(username, password).then((skypeAccount) => {
    skyweb.createThread([{"id":"8:someuserid","role":"User"},
    {"id":"8:live:someliveuserid","role":"User"}
    {"id":"8:youruserid","role":"Admin"}]);
});

More Related questions