THE FORUM IS IN READ-ONLY MODE
This forum is in read-only mode. The new forum is live at https://discourse.openbullet.dev and registrations are open!
how can i convert date and time to json timestamp format
-
title is pretty self explanatory
-
could you send a format example of json timestamp?
This function below convert the current time to UnixTime maybe it work for youFUNCTION CurrentUnixTime -> VAR "Time"
-
@Br4uN the thing is the timestamp created with this format has 10 digits whilst the example has 13
1594490955301
-
cause on javascript and a few other languages they prefer milliseconds over seconds.
so instead just <Time> use <Time>001 or some other random number.
-
@meinname thank you