Skype Web SDK を使用してアプリケーションを作成しています。
サインインするコードは次のとおりです。
jQuery(document).on("click", ".sfb_widget", function() {
client.signInManager.signIn({
username: "myname@mydomain.onmicrosoft.com",
password: "mypassword"
}).then(function() {
log('Logged In Succesfully');
//$('#searchagain').show();
}).then(null, function(error) {
// if either of the operations above fails, tell the user about the problem
//console.error(error);
log('Oops, Something went wrong: ' + error);
});
})
ボタンをクリックすると、次のエラーが表示されます。
https://lyncdiscover.mydomain.onmicrosoft.com/xframe ネットを取得:: ERR_INSECURE_RESPONSE
https://lyncdiscoverinternal.mydomain.onmicrosoft.com/xframe net::ERR_NAME_NOT_RESOLVED
ここで何が間違っていますか?