According to the Documentation, the below code can set a timestamp as the key of the node using push() in the Realtime Database.
public void uploadToDB(String s) {
databaseReference.push().setValue(s);
}
The returned key are below of my push(), as an example: a) -MpfCu14jtIkEk28D3CB b) -MpfCxv_Nzv3YJ87MfZH
My question is:
- are they timestamp?
- if yes, can I decode it back to a readable timestamp?