我正在尝试使用Vine
将webview
嵌入到Android应用程序中并调用vine ombed api以使HTML显示在webview
中。我目前收到以下错误
https://vine.co/v/MwrDbBbbwIK/embed/simple net::ERR_INSECURE_RESPONSE
我知道这是某种ssl证书错误。我能够在Safari
中正确显示,但不能在Chrome
或我的机器人webview
中显示。有没有解决这个错误?
答案 0 :(得分:1)
试试这个
mWebView.setWebViewClient(new WebViewClient()
{
@Override
public void onReceivedSslError(WebView view, SslErrorHandler handler, SslError error) {
handler.proceed(); // Ignore SSL certificate errors
}
});