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