Unable to enter SKYPE SDK Samples

I am trying to run web samples distributed with the new SKYPE SDK. I do not have a local Lync server, so I use the domain and token login specified on the site.

Domain=metio.net Token= Bearer cwt=AAEBHAEFAAAAAAAFFQAAAKuuXmvzGAIi1fxkeZUMAACBEFGt0YtqM3BVrxhrtkQkKFqCAoCDgyBiUaV6fPrpGdHv_Vl5hHoss0owQitMzh9xvY5tjoKyLoYIslm_avRm0ggNEPafGCkKskFVn6NvOvBYlbY 

But the login never ends. A busy circle just spins forever. Has anyone got this to work?

+5
source share
3 answers

try this code

 <html> <head> <!-- JQuery. Skype Web SDK requires JQuery to work. --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <!-- Bootstrap layouts and themes. Totally optional, but it makes the examples look much nicer --> <link rel="stylesheet" type="text/css" href="../../assets/metro/css/metro-bootstrap.min.css"> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script> <!-- This is the Skype for Web SDK --> <script type="text/javascript" src="//swx.cdn.skype.com/shared/v/1.1.23.0/SkypeBootstrap.js"></script> </head> <body> <div id="header"></div> <!-- Skype for Web API Code by Tom Morgan | thoughtstuff.co.uk --> <!-- This is one of a number of examples showing how to use the Skype for Web API. The full list is at skypewebsdk.com --> <!-- Disclaimer: use at your own risk. --> <div class="form-horizontal"> <div class="form-group"> <label for="username" class="col-sm-2 control-label">Username</label> <div class="col-sm-10"> <input type="email" class="form-control" id="username" placeholder="Email"> </div> </div> <div class="form-group"> <label for="password" class="col-sm-2 control-label">Password</label> <div class="col-sm-10"> <input type="password" class="form-control" id="password" placeholder="Password"> </div> </div> <div class="form-group"> <div class="col-sm-offset-2 col-sm-10"> <button class="btn btn-default" id="btnLogIn">Log in</button> </div> </div> </div> <div id="footer"></div> <!-- This is not needed for the samples to run, but adds standard headers and footers to the samples, to display title, instructions, about etc. If you're taking this code and using it yourself, you can remove this.--> <script type="text/javascript" src="../../assets/layoutcodesample-min.js"></script> <script type="text/javascript"> <!-- These variables are only needed for laying out the code sample, they are not part of the sample code. --> var pageTitle = "Getting Logged In"; var blogPostLocation = "http://blog.thoughtstuff.co.uk/2015/04/learn-skype-web-sdk-day-1-logging-in/"; var githubLocation = "https://github.com/tomorgan/SkypeWebSDKSamples/blob/gh-pages/Login/Getting%20Logged%20In/index.htm"; var client; $(function () { 'use strict'; Skype.initialize({ apiKey: 'SWX-BUILD-SDK', }, function (api) { client = new api.application(); }, function (err) { alert('some error occurred: ' + err); }); $('#btnLogIn').click(function () { // start signing in client.signInManager.signIn({ username: $('#username').val(), password: $('#password').val() }).then(function () { //log in worked! alert('Logged in!'); }, function (error) { //Something went wrong. alert(error); }); }); }); </script> </body> </html> 
0
source

I saw this problem, and here is how it was solved:

Now you can complete the registration process.

Hi

0
source

I looked at Skype samples on my website, but I could not get these samples to work. I used the example above where I typed metio.net and the oauth token. The problem I am facing is that I used these samples from my work network. There must be some kind of firewall or other problem that interfered with the work with the sample, because as soon as I tried it from my home computer, it worked fine.

-1
source

All Articles