|
@@ -80,7 +80,7 @@ public class AuthServiceController {
|
|
}
|
|
}
|
|
|
|
|
|
DecodedJWT decode = JWT.decode(userToken);
|
|
DecodedJWT decode = JWT.decode(userToken);
|
|
- String idcard = decode.getClaim("idcard").asString();
|
|
|
|
|
|
+ String idcard = decode.getClaim("idCard").asString();
|
|
int iat = decode.getClaim("iat").asInt();
|
|
int iat = decode.getClaim("iat").asInt();
|
|
int exp = decode.getClaim("exp").asInt();
|
|
int exp = decode.getClaim("exp").asInt();
|
|
|
|
|