Skype Web SDK登录不工作

我正在使用来自https://msdn.microsoft.com/EN-US/library/dn962162(v=office.16).aspx的Skype SDK入口点源并尝试登录Skype,但我一直在遇到问题其中一个Skypefunction。 我目前有两个文本字段,它们有自己的ID值(#username和#password),我有2个按钮(#signin和#signout)。

  

我从msdn网站上获取了js内容的副本,如下所示,

 $(function () { 'use strict'; // create an instance of the Application object; // note, that different instances of Application may // represent different users var Application var client; Skype.initialize({ apiKey: 'SWX-BUILD-SDK', }, function (api) { Application = api.application; client = new Application(); }, function (err) { alert('some error occurred: ' + err); }); // whenever state changes, display its value client.signInManager.state.changed(function (state) { $('#application_state').text(state); }); // when the user clicks on the "Sign In" button $('#signin').click(function () { // start signing in client.signInManager.signIn({ username: $('#username').text(), password: $('#password').text() }).then( //onSuccess callback function () { // when the sign in operation succeeds display the user name alert('Signed in as ' + client.personsAndGroupsManager.mePerson.displayName()); }, //onFailure callback function (error) { // if something goes wrong in either of the steps above, // display the error message alert(error || 'Cannot sign in'); }); }); // when the user clicks on the "Sign Out" button $('#signout').click(function () { // start signing out client.signInManager.signOut() .then( //onSuccess callback function () { // and report the success alert('Signed out'); }, //onFailure callback function (error) { // or a failure alert(error || 'Cannot sign in'); }); }); }); 

当我加载我的html页面错误时,我得到以下错误,“未捕获的TypeError:无法读取未定义的属性’signInManager’”。 它指向错误的行是“client.signInManager.state.changed(function(state){”。我可以看到’signInManager’在SDK-build.js文件中,由源正确选取来自swx.cdn.skype.com/vs/SDK-build.js所以我不知道如何解决这个问题,有没有人对如何解决这个问题有任何想法?

问题似乎与2个jquery库的引用有关,其中一个比另一个更旧。 已删除旧引用,错误消息现已消失。