From 1775ac1aa13271f77d341f0b12df03547355da3a Mon Sep 17 00:00:00 2001 From: Harun CAN Date: Thu, 30 Apr 2026 17:12:18 +0200 Subject: [PATCH] main --- test-auth.js | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 test-auth.js diff --git a/test-auth.js b/test-auth.js new file mode 100644 index 0000000..b07a05c --- /dev/null +++ b/test-auth.js @@ -0,0 +1,3 @@ +const jwt = require('jsonwebtoken'); +const token = jwt.sign({ sub: 'user_id_here' }, 'ContentGen_SuperSecretKey_2026', { expiresIn: '1h' }); +console.log(token);