我尝试使用 SSL 页面加载 WebView,但出现错误。下面的代码和错误。我已将权限设置为允许访问 Internet。
我认为这是一个仅限 Mono 的问题。当我在默认浏览器中尝试我的 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 站点加载到 web 视图中的含义.