Oembed Vine Android webview-ssl错误

时间:2016-03-01 01:37:05

标签: android ssl webview oembed vine

我正在尝试使用Vinewebview嵌入到Android应用程序中并调用vine ombed api以使HTML显示在webview中。我目前收到以下错误

https://vine.co/v/MwrDbBbbwIK/embed/simple net::ERR_INSECURE_RESPONSE

我知道这是某种ssl证书错误。我能够在Safari中正确显示,但不能在Chrome或我的机器人webview中显示。有没有解决这个错误?

1 个答案:

答案 0 :(得分:1)

试试这个

 mWebView.setWebViewClient(new WebViewClient()       
{
    @Override
    public void onReceivedSslError(WebView view, SslErrorHandler handler, SslError error) {
        handler.proceed(); // Ignore SSL certificate errors
    }
});