未处理的异常:错误状态:平台不允许使用不安全的 HTTP - usesClearTextTraffic 不起作用

Posted

技术标签:

【中文标题】未处理的异常:错误状态:平台不允许使用不安全的 HTTP - usesClearTextTraffic 不起作用【英文标题】:Unhandled Exception: Bad state: Insecure HTTP is not allowed by platform - usesClearTextTraffic not worked 【发布时间】:2021-07-16 20:15:38 【问题描述】:

我正在尝试使用 phpmysql 数据库在 Flutter 中运行一个基本的 API 调用,但我收到一条错误消息:

E/flutter ( 7461): [ERROR:flutter/lib/ui/ui_dart_state.cc(186)] Unhandled Exception: Bad state: Insecure HTTP is not allowed by platform

我的尝试

我已经尝试过这里提出的解决方案:Bad state: Insecure HTTP is not allowed by platform:

这里:https://www.programmersought.com/article/49295775092/

示例代码

home.dart

import 'package:flutter/material.dart';
import 'package:flutter_crud/env.sample.dart';
import 'dart:convert';
import 'package:http/http.dart';

class Home extends StatefulWidget 
  @override
  _HomeState createState() => _HomeState();


class _HomeState extends State<Home> 

  void getData() async
    Response response = await get(Uri.parse("$Env.URL_PREFIX/list"));
    Map data = jsonDecode(response.body);
    print(data);
  

  @override
  void initState() 
    super.initState();
    getData();
  

  @override
  Widget build(BuildContext context) 
    return Scaffold(
        appBar: AppBar(
          title: Text('Flutter CRUD API'),
          centerTitle: true,
        ),
        body:Center(
          child: Text('Hello'),
        )
    );
  

URI前缀来自于env.sample.dart:

class Env
  static String URL_PREFIX = "http://[my.IP.address.here]/flutter_crud";

在debug/androidManifest.xml中:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="jacobcollinsdev.flutter_crud">
    <uses-permission android:name="android.permission.INTERNET"/>
    <application android:usesCleartextTraffic="true"/>
</manifest>

在 main/AndroidManifest.xml 文件中:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="jacobcollinsdev.flutter_crud">
    <uses-permission android:name="android.permission.INTERNET" /> <------- I added this line
    <application
        android:label="flutter_crud"
        android:icon="@mipmap/ic_launcher"
        android:usesCleartextTraffic="true"
        android:networkSecurityConfig="@xml/network_security_config"> <------ I added this line
        <activity
            android:name=".MainActivity"
            android:launchMode="singleTop"
            android:theme="@style/LaunchTheme"
            android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
            android:hardwareAccelerated="true"
            android:windowSoftInputMode="adjustResize">
            <meta-data
              android:name="io.flutter.embedding.android.NormalTheme"
              android:resource="@style/NormalTheme"
              />
            <meta-data
              android:name="io.flutter.embedding.android.SplashScreenDrawable"
              android:resource="@drawable/launch_background"
              />
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>
        <meta-data
            android:name="flutterEmbedding"
            android:value="2" />
        <uses-library 
            android:name="org.apache.http.legacy"
            android:required="false" /> <-------I added this code block
    </application>
</manifest>

最后,我也在android/app/main/res/xml/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>

到目前为止,还没有解决这个错误,我完全没有想法。任何反馈都会很棒!

【问题讨论】:

更新:我也试过运行flutter clean,没有成功。 你解决了吗? @abed 不,不幸的是没有! 【参考方案1】:

只需将这些行 android/app/src/main/AndroidManifest.xml

1)。添加&lt;uses-permission android:name="android.permission.INTERNET" /&gt; application 标签之前

2)。在application标签内添加android:usesCleartextTraffic="true"

【讨论】:

【参考方案2】:

您应该尝试从 SSL 证书域加载图像。那是使用HTTPS 而不是HTTP

因此,对于您的情况,请将 "http://[my.IP.address.here]/flutter_crud" 替换为使用 https://

【讨论】:

【参考方案3】:

删除此

class Env
static String URL_PREFIX = "http://[my.IP.address.here]/flutter_crud";

添加此

class Env
static String URL_PREFIX = "https://[my.IP.address.here]/flutter_crud";

使用 https://

而不是 http://

【讨论】:

正如目前所写,您的答案尚不清楚。请edit 添加其他详细信息,以帮助其他人了解这如何解决所提出的问题。你可以找到更多关于如何写好答案的信息in the help center。

以上是关于未处理的异常:错误状态:平台不允许使用不安全的 HTTP - usesClearTextTraffic 不起作用的主要内容,如果未能解决你的问题,请参考以下文章

Flutter:未处理的异常:错误状态:调用关闭后无法添加新事件(不一样的情况)

Flutter:未处理的异常:错误状态:DocumentSnapshotPlatform中不存在字段

Scrapy 404错误:未处理或不允许HTTP状态代码

未处理的异常:查找已停用小部件的祖先是不安全的。如何解决这个问题?

java编程基础----异常

java编程基础----异常