저는 skype web sdk를 사용하여 응용 프로그램을 만듭니다.net :: ERR_INSECURE_RESPONSE Skype web sdk를 사용하여 로그인하는 중
GET https://lyncdiscover.mydomain.onmicrosoft.com/xframe net::ERR_INSECURE_RESPONSE
https://lyncdiscoverinternal.mydomain.onmicrosoft.com/xframe net::ERR_NAME_NOT_RESOLVED
내가 잘못 여기서 뭐하는 오전 : 나는 다음과 같은 오류가있어 버튼의 클릭에
jQuery(document).on("click", ".sfb_widget", function() {
client.signInManager.signIn({
username: "[email protected]",
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://lyncdiscoverinternal.mydomain.onmicrosoft.com/xframe을 탐색하고 인증서가 만료되었거나 수락해야하는지 확인하는 것이 좋습니다. 일반적으로 Chrome은 HTTPS 또는 인증서가 유효하지 않거나 만료되었을 때 HTTP에서 리소스를로드하려고 할 때이 오류를보고합니다. – ShelbyZ