Created
June 23, 2023 01:05
-
-
Save andrewvmail/1d9d9807a894418c782a1a51da673f61 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log("make-token") | |
const jwt = require('jsonwebtoken'); | |
let jwtSecretKey = process.env.JWT_SECRET_KEY || "momo"; | |
let data = { | |
"context": { | |
"user": { | |
"avatar": "https://robohash.org/john-doe", | |
"name": "John Doe", | |
"email": "[email protected]" | |
} | |
}, | |
"aud": "my_jitsi_app_id", | |
"iss": "my_jitsi_app_id", | |
"sub": "meet.jitsi", | |
"room": "*" | |
} | |
const token = jwt.sign(data, jwtSecretKey); | |
console.log(token) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "maketoken", | |
"version": "1.0.0", | |
"description": "", | |
"main": "make-token.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"author": "", | |
"license": "ISC", | |
"dependencies": { | |
"jsonwebtoken": "^9.0.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment