debugging 我的Flutter应用程序无法获取或发布https请求

taor4pac  于 2023-04-06  发布在  Flutter
关注(0)|答案(1)|浏览(148)

我正在构建一个Flutter应用程序,一切都很好,如果我使用HTTP请求,但当涉及到https,我无法获取或发布https请求,调试器没有错误,即使它不打印请求的响应.我试过,flutter clean和重建应用程序这么多次,甚至清除我的移动终端缓存等.它不工作,我正在Android设备上工作和测试

编码

import 'dart:convert';
import 'package:http/http.dart' as http;

var url = Uri.parse('https://my.api-end-point.com:port/auth');

Map requestHeaders = <String, String>{
  'Content-type': 'application/json',
  'Accept': 'application/json'
};
Map body = <String, String>{'email': email, "password": password};
var response = await http.post(url, headers: requestHeaders, body: json.encode(body));
var res = jsonDecode(response.body);
print(res);

测试也在 Postman 上工作

x1c 0d1x任何帮助将不胜感激!

gmxoilav

gmxoilav1#

你有没有试过用postman来访问同一个API?可能是api本身有问题,因为控制台没有返回错误

相关问题