0

根據該文件,我遵循正確的一切,但我老覺得以下錯誤:不可能使用這個SDK是否有可能它的SDK不穩定?

enter image description here

<!doctype html> 
<html> 
<head> 
    <title>My Skype Web SDK app</title> 
    <script src="https://swx.cdn.skype.com/shared/v/1.2.15/SkypeBootstrap.min.js"></script> 
</head> 
<body> 
    <script> 
    Skype.initialize({ apiKey: 'a42fcebd-5b43-4b89-a065-74450fb91255' }, api => { 
     var app = new api.application; 
     app.signInManager.signIn ({ 
     username: 'sdfsfsfdsfsdf', //USE VALID username 
     password: 'xxx' // USE VALID password 
     }).then(() => { 
     console.log("signed in as", app.personsAndGroupsManager.mePerson.displayName()); 
     }, err => { 
     console.log("cannot sign in", err); 
     }); 
    }, err => { 
     console.log("cannot load the sdk package", err); 
    }); 
    </script> 
</body> 
</html> 

回答

1

爲什麼鏈接指向gmail.com?您必須提供用於發現Lync服務的Lync Server地址

+1

你在用什麼?您正試圖登錄Skype for Business服務器。服務器在哪裏託管?您必須指定要連接到的Skype for Business服務器的域。 – Shahzad

+1

你有2個選項。您可以在您的組織中設置Skype for Business Server。如果您的組織使用Lync,則可以直接連接到該組件。如果您的組織中沒有任何內容,則可以使用Microsoft提供的Skype for Business Online服務器。但爲此,你需要2件事。在線登錄S​​kype for Business的Office 365帳戶。而Azure訂閱則需要一個Azure Active Directory來註冊你的應用程序。讓我知道您正在使用或計劃使用哪個選項。然後我可以幫助你更好。 – Shahzad

+1

http://stackoverflow.com/questions/39843684/developing-ucwa-online-for-ios-application/39871016#39871016 – Shahzad

0

看起來您嘗試使用Gmail帳戶登錄Skype for Business。這不支持。

相關問題