Skype Web SDK Integration

Has anyone successfully integrated the Skype Web SDK into their wix site? I keep hitting a dead end with the JS. It works in other applications. Any advice would be great.
Thanks
Wix Trix Designs

Hi,

Can you please share with us the code you were trying to add to your site? Moreover, please send us the documentation so that we can have a look.

Thanks,
Tal.

Hello Tal, I have had a hard time writing this particular code. Back story, I began designing sites and coding almost 20 years ago, the past 10 years I have been flying planes, earlier this years I got back into web design. Slowly everything is coming back and I’m still trying to learn all that has changed. Here is most of the code. I did copy some of it from a Microsoft forum. Im not sure what i missing or if any of this is right. I used a similar code in wordpress and it worked perfectly. I had a different code I wrote based of a different forum. I cant seem to find it :frowning:

});
// Reference to SkypeBootstrap.min.js
// Implements the Skype object model via https://swx.cdn.skype.com/shared/v/1.2.15/SkypeBootstrap.min.js

// Call the application object
var config = {
apiKey: ‘a42fcebd-5b43-4b89-a065-74450fb91255’, // SDK
apiKeyCC: ‘9c967f6b-a846-4df2-b43d-5167e47d81e1’ // SDK+UI
};

// Call the application object var config = { apiKey: ‘a42fcebd-5b43-4b89-a065-74450fb91255’, // SDK apiKeyCC: ‘9c967f6b-a846-4df2-b43d-5167e47d81e1’ // SDK+UI }; var Application Skype.initialize({ apiKey: config.apiKey }, function (api) { window.skypeWebApp = new api.application(); //Make sign in table appear $(“.menu #sign-in”).click(); // whenever client.state changes, display its value window.skypeWebApp.signInManager.state.changed(function (state) { $(‘#client_state’).text(state); }); }, function (err) { console.log(err); alert(‘Cannot load the SDK.’); });