Hi,
I have another problem about SigninManager. when I login in like this;
tan.tastan@abcd.com
abdc.com is reachable. but If I write wrong domain for example; tan.tastan@abcdE.com (which domain name is nonexist) I am not getting a response and my application is waiting. nothing happens. here is my sample code;
setting include username, password, domain information.
function doLogin(settings) {
return new Promise((resolve, reject) => {
window.skypeWebSDKApi.signInManager.signIn(settings).then((response) => {
resolve(response);
}, (error) => {
reject(error);
}).catch(reject);
});
}
what is the problem? what do you think?