I would like to use the current Firebase server time in the Firebase URL. Below is an example of what I'm trying to accomplish.
Firebase(url: "https://location.firebaseio.com/logs/<firebase_time_stamp>")
Firebase(url: "https://location.firebaseio.com/logs/" + Firebase.TIME_STAMP)
Is there anyway to do this? If so, I need it to work in Swift and Java. I know that you can do something similar as a child, but thatβs not what Iβm looking for.
source
share