我有一个使用 'http: ^0.13.5' 包的 get 方法。
在 Insominia 上,状态代码是 200(使用相同的 url 和标头),但在我的应用程序中,我收到错误消息
{"status":409,"message":"Unauthenticated"}
我的语法有问题吗?
final response = await http.get(
Uri.parse('http://sys-dev.searchandstay.com/api/admin/house_rules'),
headers: {
'Authorization':
'Bearer 40fe071962846075452a4f6123ae71697463cad20f51e237e2035b41af0513d8',
},
);