auth0 / java-jwt

Java implementation of JSON Web Token (JWT)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Does JDK1.6 support?

gitaxin opened this issue · comments

commented

I want to use this package in JDK1.6 environment, which version supports it?

I have the following error when using it in JDK1.6:

java.lang.UnsupportedClassVersionError: JVMCFRE003 bad major version; class=com/auth0/jwt/JWT, offset=

Hello @gitaxin, this library currently supports all Java 8, 11 & 17. We currently do not support Java 1.6 as many of the APIs we have are not supported in it.

commented

allright,Thanks!