Skip to content

Commit c65c58a

Browse files
kemister85Farzad Hayat
andauthored
Update modules/ROOT/partials/auth/document-converters/server-setup-jwt.adoc
Co-authored-by: Farzad Hayat <[email protected]>
1 parent 9ce9282 commit c65c58a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/ROOT/partials/auth/document-converters/server-setup-jwt.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ app.use(express.static(path.join(__dirname, 'public')));
2222
// JWT token generation endpoint
2323
app.post('/jwt', (req, res) => {
2424
const payload = {
25-
aud: 'YOUR-API-KEY-HERE', // Replace with your actual API key
25+
aud: 'YOUR-API-KEY', // Replace with your actual API key
2626
iat: Math.floor(Date.now() / 1000), // Issue timestamp
2727
exp: Math.floor(Date.now() / 1000) + (60 * 10) // Expiration time (10 minutes)
2828
};

0 commit comments

Comments
 (0)