jwt secret key code example
Example 1: generate jwt secret key
node -e "console.log(require('crypto').randomBytes(256).toString('base64'));"
Example 2: generate private key for jwt
PrivateKey privateKey =
Instant now = Instant.now();
String jwt = Jwts.builder()
.setAudience("https://${yourOktaDomain}/oauth2/default/v1/token")
.setIssuedAt(Date.from(now))
.setExpiration(Date.from(now.plus(5L, ChronoUnit.MINUTES)))
.setIssuer(clientId)
.setSubject(clientId)
.setId(UUID.randomUUID().toString())
.signWith(privateKey)
.compact();