我正在尝试通过 Insomnia API 使用 HTTP 查询来查询我的 Firestore 数据库:
https://firestore.googleapis.com/v1/projects/typebot/databases/(default)/documents/users
有了这个身体:
{
"structuredQuery": {
"from": [
{
"collectionId": "users"
}
],
"where": {
"fieldFilter": {
"field": {
"fieldPath": "email"
},
"op": "EQUAL",
"value": {
"stringValue": "email@test.com"
}
}
}
}
}
我收到以下错误:
HTTP 查询:HTTP/2 成帧层中的流错误
知道有什么问题吗?