Skype Web API使用登录名和密码登录问题

Skype Web API使用登录名和密码登录问题,api,web,sdk,skype,Api,Web,Sdk,Skype,我无法使用登录名和密码登录Skype帐户。我使用Skype Web SDK文档中的代码: <script> 发送POST请求,但API不返回任何内容。有人能给我建议吗 window.skypeWebApp.signInManager.signIn({ username: "test@yandex.ru", password: "12345678" }).then(function () { console.log('Sig

我无法使用登录名和密码登录Skype帐户。我使用Skype Web SDK文档中的代码:

<script>

发送POST请求,但API不返回任何内容。有人能给我建议吗

    window.skypeWebApp.signInManager.signIn({
       username: "test@yandex.ru",
       password: "12345678"
    }).then(function () {
       console.log('Signed in successfully.');
    }, function (error) {
       console.log('Failed to sign in.');
    }).then(reset);
}, function (err) {
    console.log(err);
    alert('Cannot load the SDK.');
});