Flutter 报错 DioError [DioErrorType.DEFAULT]: Bad state: Insecure HTTP is not allowed by platform(代码片段

Posted dingwen_blog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Flutter 报错 DioError [DioErrorType.DEFAULT]: Bad state: Insecure HTTP is not allowed by platform(代码片段相关的知识,希望对你有一定的参考价值。

问题描述:

flutter 报错 DioError [DioErrorType.DEFAULT]: Bad state: Insecure HTTP is not allowed by platform

原因分析:

平台不支持不安全的 HTTP 协议,即不允许访问 HTTP 域名的地址。iosandroid 9.0 对网络请求做了一些限制,不能直接访问 Http 域名的地址。

解决方案:

配置允许不加密的请求

Android 配置

1.新建network_security_config.xml文件

在这里插入图片描述

<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
    <base-config cleartextTrafficPermitted="true">
        <trust-anchors>
            <certificates src="system" />
        </trust-anchors>
    </base-config>
</network-security-config>

2.配置

在这里插入图片描述

  android:usesCleartextTraffic="true"
       android:networkSecurityConfig="@xml/network_security_config">

以上是关于Flutter 报错 DioError [DioErrorType.DEFAULT]: Bad state: Insecure HTTP is not allowed by platform(代码片段的主要内容,如果未能解决你的问题,请参考以下文章

Flutter 报错: Error: No address associated with hostname, errno = 7

颤振:异常 DioError [DioErrorType.DEFAULT]:类型 'String' 不是类型 'Map<String, dynamic>' 的子类型

flutter dio 网络请求问题

DioError [DioErrorType.RESPONSE]: Http 状态错误 [405] [已解决]

错误:DioError [DioErrorType.other]:SocketException:主机查找失败:未被捕获

如何使用 Dio 或 http 在 Flutter 中通过 GET 请求发送参数