gpt4 book ai didi

api - 在Flutter应用程序中使用Dart的400错误请求尝试连接到FileMaker Database

转载 作者:行者123 更新时间:2023-12-03 03:52:00 30 4
gpt4 key购买 nike

Is this still the case?我们可以不使用Flutter查询FileMaker API吗?
我收到一个400错误。
这是我的代码:

final recordResponse = await http.post(
findUrl,
headers: {
HttpHeaders.contentTypeHeader: 'application/json',
HttpHeaders.authorizationHeader : 'Bearer ' + token
},
body: json.encode({"query":[{"firstname": "=Yuichi"}]}),
);

最佳答案

解决了。
我可以使用Dio在FileMaker布局中访问一个用户。

Dio dio = Dio();

dio.options.headers['content-Type'] = 'application/json';
dio.options.headers["authorization"] = "Bearer ${token}";

Response recordResponse;

recordResponse = await dio.post(
findUrl,
options: Options(followRedirects: false, validateStatus: (status)
{return status < 500;}),
data: { "query":
[{
"username": "=Jake",
"password": "=password"
}]
}
);

关于api - 在Flutter应用程序中使用Dart的400错误请求尝试连接到FileMaker Database,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62837827/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com