Tag: skypedeveloper

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)。 Log inLog out 我从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 […]