Cloud Firestore REST API - Add server timestamp
问题 I'm using an Arduino with an ESP8266-01 module to upload a value to a Cloud Firestore database using the createDocument API with the following payload: { "fields": { "distance": { "integerValue": "555" } } } I do a POST-request to a route like this: https://firestore.googleapis.com/v1beta1/projects/<MY_PROJECT>/databases/(default)/documents/<SOME_COLLECTION>?key=MY_VERY_SECRET_KEY That all works, but I would like to add the server timestamp as well. I've found a few answers here on