在我的应用中使用私钥和HMAC256算法创建JWT令牌
为此,我正在使用https://github.com/jwtk/jjwt#install-android,我没有使用任何示例或示例
令牌= Jwts.builder() .setHeader(headerMap) .setClaims(claimsMap) .setIssuer(发出者) .signWith(SignatureAlgorithm.HS256, Base64.decode( //生成的签名密钥是 //的正确长度 // HS256算法。 secret_key,Base64.DEFAULT ))。compact();