diff --git a/server/scripts/gen_auth_token_signature.php b/server/scripts/gen_auth_token_signature.php index 1db222f..47328a1 100644 --- a/server/scripts/gen_auth_token_signature.php +++ b/server/scripts/gen_auth_token_signature.php @@ -11,8 +11,8 @@ declare(strict_types=1); $options = getopt('', ['agent_id:', 'secret:', 'time::']); -$agentId = $options['agent_id'] ?? ''; -$secret = $options['secret'] ?? ''; +$agentId = $options['agent_id'] ?? '5ef059938ba799aaa845e1c2e8a762bd'; +$secret = $options['secret'] ?? 'xF75oK91TQj13s0UmNIr1NBWMWGfflNO'; $time = $options['time'] ?? (string) time(); if ($agentId === '' || $secret === '' || $time === '') {