swobi71

Results 2 comments of swobi71

@sww-jm I use this little Pre Request script: ``` function getCurrentTimestamp() { return new Date().getTime(); } bru.setVar("currentTimestamp", getCurrentTimestamp()); ``` You then can use {{currentTimestamp}} in your requests. If you add...

ah, very nice! (and dividing by 1000 to get the timestamp in seconds totally makes sense) maybe you could add a new variable "timestamp_ms" which contains the timestamp in milliseconds?...