Unix timestamp firebase

Code examples

2
0

firebase timestamp

import firebase from 'firebase';

{
	timestamp: firebase.firestore.FieldValue.serverTimestamp(),
}
0
0

timestamp firebase

// Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.

long millis = System.currentTimeMillis();

Timestamp timestamp = 
  Timestamp.newBuilder()
           .setSeconds(millis / 1000)
           .setNanos((int)(millis % 1000 * 1_000_000))
           .build();

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................