fixed token expiration parsing

pull/650/head
Justin Richer 2013-09-06 14:44:01 -04:00
parent f56a993ca9
commit 3524350086
1 changed files with 6 additions and 4 deletions

View File

@ -52,12 +52,14 @@ public class OAuth2AccessTokenImpl implements OAuth2AccessToken {
}
DateFormat dateFormater = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ");
if (token.get("exp") != null) {
try {
expireDate = dateFormater.parse(token.get("expires_at").getAsString());
expireDate = dateFormater.parse(token.get("exp").getAsString());
} catch (ParseException ex) {
Logger.getLogger(IntrospectingTokenService.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
@Override