最近,新版Skype SDK的预览版已经发布。因此,我下载了示例,阅读了MSDN文章,并尝试编写最简单的JS脚本来登录此SDK。因此,我从这个MSDN文章中提取了代码,并对其做了一些修改(示例代码根本没有使用错误的变量)。修改后的代码可以工作,但返回错误:
"TypeError: Cannot read property '1' of null at https://swx.cdn.skype.com/build2015/v5/SDK-build.js:8982:77 at handle (https://swx.cdn.skype.com/build2015/v5/SDK-build.js:2220:63) at https://swx.cdn.skype.com/build2015/v5/SDK-build.js:698:34". 所以我的代码如下:
$(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();
// when the user clicks on the "Sign In" button $('#signin').click(function () {
// start signing in
client.signInManager.signIn({
username: 'login',
password: 'pass'
}).then(
//onSuccess callback
function () {
// when the sign in operation succeeds display the user name
alert('Signed in as ' + application.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');
});
}, function (err) {
alert('some error occurred: ' + err);
});
});我做错了什么?
发布于 2015-08-13 12:53:28
最后,我找到了正确的答案:目前,Skype Web只适用于企业,而不是面向消费者的Skype。悲伤却是真的。
https://stackoverflow.com/questions/31773568
复制相似问题