PostmanのPre-Requestスクリプトでタイムスタンプ変数を設定する方法
Unixタイムスタンプを使用する方法:// 現在のUnixタイムスタンプを取得 const timestamp = Math.floor(Date.now() / 1000); // グローバル変数にタイムスタンプを設定 pm.globals.set("timestamp", timestamp);>>More
Unixタイムスタンプを使用する方法:// 現在のUnixタイムスタンプを取得 const timestamp = Math.floor(Date.now() / 1000); // グローバル変数にタイムスタンプを設定 pm.globals.set("timestamp", timestamp);>>More