mobizt / Firebase-ESP-Client

[DEPRECATED]🔥Firebase Arduino Client Library for ESP8266, ESP32 and RP2040 Pico. The complete, fast, secured and reliable Firebase Arduino client library that supports RTDB, Cloud Firestore, Firebase and Google Cloud Storage, Cloud Messaging and Cloud Functions for Firebase.
MIT License
471 stars 100 forks source link

Firestore Get, Query, List examples returns incorect document name in payload #620

Closed ev-olution closed 8 months ago

ev-olution commented 8 months ago

All Firestore examples which return payload has issues with document name. For example I get the following payload output on serial:

Get a document... ok { "name": "projects/stripe-webhook-d1xxxx/databases/(default)/documents/info/countries", "fields": { "Singapore": { "mapValue": { "fields": { "population": { "integerValue": "5703600" }, "time_zone": { "integerValue": "8" } } } } }, "createTime": "2024-01-04T00:40:24.270730Z", "updateTime": "2024-01-04T00:40:24.270730Z" }

Document name is returned as full document path (including server path), but not as actual name, which in this case is "countries". How I can make it return real document name, instead of path? Thanks

mobizt commented 8 months ago

It is upon Google Firestore APIs and features, we can't do anything.