Ich habe ein Problem, wenn ich meine NativeScript-Anwendung auf Android API 17 testen. Die Installation funktioniert gut, aber wenn ich versuche, mit einer HTTP-Anfrage an meine HTTPS-Back-End , die Anfrage wird sofort beendet.Nativescript Anwendung funktioniert nicht auf Android API 17
Dies geschieht nur auf API 17 und nicht auf höherer API.
Error: javax.net.ssl.SSLHandshakeException: java.security.cert.CertPathValidatorException: Trust anchor for certification path not found.
http.request({
url: config.baseUrl + "login",
method: "POST",
headers: {"Content-Type": "application/x-www-form-urlencoded"},
content: "grant_type=password&username=" + this.username + "&password=" + this.password
});
Wenn es https ist, sollten Sie nicht ein https anfordern? –
Mögliches Duplikat von [Vertrauensanker nicht für Android SSL-Verbindung gefunden] (http://stackoverflow.com/questions/6825226/trust-anchor-not-found-for-android-ssl-connection) –
der letzte Kommentar aus dem Link oben: http://stackoverflow.com/a/16302527/4936697 –