Не удалось выполнить рукопожатие Fluttere Webview - PullRequest
1 голос
/ 27 мая 2020

Вот мой код:

child: WebView(
          initialUrl:  widget.postUrl,
          onWebViewCreated: (WebViewController webViewController){
            _controller.complete(webViewController);
          },
        ),

Если widget.postUrl - это что-то вроде 'https://facebook.com' или 'https://google.com', он отлично работает , но когда это 'https://care-promotion.fr/regain/', я получаю эту ошибку:

E/chromium(14259): [ERROR:ssl_client_socket_impl.cc(959)] handshake failed; returned -1, SSL error code 1, net_error -202
E/chromium(14259): [ERROR:ssl_client_socket_impl.cc(959)] handshake failed; returned -1, SSL error code 1, net_error -202

Как решить эту проблему? Спасибо

...