The fix for SHINDIG-1732 introduces a bug with the oauth2 token expires and issue times (or at least a documentation change). The time stored in OAuth2Token use to be in seconds (and is documented that way). Now it¹s storing them in milliseconds in TokenAuthorizationResponseHandler. This causes me to blow up later when I persist them, since I was multiplying by 1000 and the converting it to a Date. What is the correct behavior here?
doug