NativeScriptアプリケーションをAndroid API 17でテストすると問題が発生します。 インストールはうまく動作しますが、HTTPリクエストを使ってHTTPSバックエンドにログインしようとすると、要求は直ちに停止します。NativescriptアプリケーションがAndroid API 17で動作しない
これはAPI 17でのみ発生し、上位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
});
httpsの場合は、httpsをリクエストしないでください。 –
[信頼できるアンカーがAndroid SSL接続で見つからない]重複している可能性があります(http://stackoverflow.com/questions/6825226/trust-anchor-not-found-for-android-ssl-connection) –
リンクからの最後のコメント上記:http://stackoverflow.com/a/16302527/4936697 –