You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a source's OAuth2 token endpoint does not use expires or expires_in in its response, Grabber will try to get the expiration time from the refresh token's exp JWT claim, instead of the access token's.
Both expirations should be treated separately, but we should also consider that in most cases, refresh tokens aren't JWT and their expiration is not often indicated in responses, so we should gracefully handle the case where only the access token's expiration is known.
The text was updated successfully, but these errors were encountered:
When a source's OAuth2 token endpoint does not use
expires
orexpires_in
in its response, Grabber will try to get the expiration time from the refresh token'sexp
JWT claim, instead of the access token's.Both expirations should be treated separately, but we should also consider that in most cases, refresh tokens aren't JWT and their expiration is not often indicated in responses, so we should gracefully handle the case where only the access token's expiration is known.
The text was updated successfully, but these errors were encountered: