我尝试使用SSL页面加载WebView,但是收到错误。代码和错误如下。我已设置允许Internet访问的权限。
我认为这是一个单一的问题。当我在默认浏览器中尝试我的SSL网页时,它可以正常工作。
WebView webView = new WebView(this);
string website = "https://...";
webView.Settings.JavaScriptEnabled = true;
webView.SetWebViewClient(new WebViewClientAuthentication());
webView.LoadUrl(website);
//definition for WebViewClientAuthentication
public class WebViewClientAuthentication : WebViewClient
{
public override void OnReceivedSslError(WebView view, SslErrorHandler handler, Android.Net.Http.SslError error)
{
Log.Error("SSL ERROR",string.Format("SSL ERROR: {0}, Primary: {1}", error.GetType.ToString(), error.PrimaryError.ToString()));
base.OnReceivedSslError(view, handler, error);
}
}
输出 SSL错误:Android.Net.Http.SslError,主要:Notyetvalid
评论 我已经看到了这条消息:http://mono-for-android.1047100.n5.nabble.com/SSL-issues-td5629485.html - 但我不确定将SSL网站加载到网页视图中意味着什么。
答案 0 :(得分:2)
试试这个:
//definition for WebViewClientAuthentication
public class WebViewClientAuthentication : WebViewClient
{
public override void OnReceivedSslError(WebView view, SslErrorHandler handler, Android.Net.Http.SslError error)
{
handler.Proceed();
}
}