作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经使用 Auth0 JWT 库生成了 JWT,
algorithm = Algorithm.HMAC256(secretkey);
token = JWT.create()
.withIssuer(issuer)
.withExpiresAt(UTCExpDate) //UTC now + 30 mins added
.withIssuedAt(UTCDate)
.sign(algorithm);
当我尝试通过以下代码进行验证时,
Algorithm algorithm = Algorithm.HMAC256(secretkey);
JWTVerifier verifier = JWT.require(algorithm)
.withIssuer(issuer)
.build();
DecodedJWT jwt = verifier.verify(token);
出现以下 TokenExpiredException
异常,因为它使用当前时区(+5.30,而不是 UTC)进行验证。有什么正确的方法可以解决这个问题吗?
com.auth0.jwt.exceptions.TokenExpiredException: The Token has expired on Tue May 08 13:55:57 IST 2018.
at com.auth0.jwt.JWTVerifier.assertDateIsFuture(JWTVerifier.java:441)
at com.auth0.jwt.JWTVerifier.assertValidDateClaim(JWTVerifier.java:432)
注意:我暂时通过在验证时添加 .acceptExpiresAt(19800)
来解决此问题。但我正在寻找正确的 UTC 验证解决方案。
最佳答案
根据documentation ,您可以提供自定义 Clock
实现。将 Verification
实例转换为 BaseVerification
以获得接受自定义 Clock
的 verification.build()
方法的可见性>。例如:
BaseVerification verification = (BaseVerification) JWT.require(algorithm)
.acceptLeeway(1)
.acceptExpiresAt(5);
Clock clock = new CustomClock(); // Must implement Clock interface
JWTVerifier verifier = verification.build(clock);
关于java - 如何用UTC过期时间验证JWT?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50235634/
我是一名优秀的程序员,十分优秀!