From 0f1c46e346723c43598d114316c0871c5abc2514 Mon Sep 17 00:00:00 2001 From: Alex Li Date: Mon, 11 Nov 2024 02:12:01 +0800 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20Use=20`flutter-io.cn`=20ra?= =?UTF-8?q?ther=20than=20`neverssl.com`=20(#2325)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit NeverSSL no longer supports H2 headers upgrade without TLS. All alternatives I've searched are not supported: - http://www.gstatic.com/generate_204 - http://http.badssl.com/ - http://flutter.dev/ Surprisingly, http://flutter-io.cn/ supports all functionality. 😮 --------- Signed-off-by: Luke Cheng <2258420+chenglu@users.noreply.github.com> Co-authored-by: Luke Cheng <2258420+chenglu@users.noreply.github.com> --- dio_test/lib/src/test/basic_tests.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dio_test/lib/src/test/basic_tests.dart b/dio_test/lib/src/test/basic_tests.dart index c6e589e1d..363f31a46 100644 --- a/dio_test/lib/src/test/basic_tests.dart +++ b/dio_test/lib/src/test/basic_tests.dart @@ -17,7 +17,7 @@ void basicTests( group('basic request', () { test( 'works with non-TLS requests', - () => dio.get('http://neverssl.com/'), + () => dio.get('http://flutter-io.cn/'), testOn: 'vm', );