Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.7
-
None
-
Unknown
Description
My clients have different token expiration times so I need to have the expires_in query parameter include on the url response to the client when the token is returned. This is for the implicit flow.
In other words, this line of code needs to be added to ImplicitGrantService.java at line 77 (or so):
sb.append("&").append(OAuthConstants.ACCESS_TOKEN_EXPIRES_IN).append("=").append(token.getExpiresIn());
Thanks.