AI-generated Key Takeaways
-
The server sends a header object with all responses.
-
This header includes a required
responseTimestampfield, formatted as an int64 string representing milliseconds since epoch. -
Receivers should validate the
responseTimestampto ensure it's within ± 60 seconds of the current time.
Header object that is defined on all responses sent from the server.
| JSON representation |
|---|
{ "responseTimestamp": string } |
| Fields | |
|---|---|
responseTimestamp |
REQUIRED: Timestamp of this response represented as milliseconds since epoch. The receiver should verify that this timestamp is ± 60s of 'now'. |