Any reason the access token request response have a key called expires_at which isn’t present in the refresh token response. Why there’s such an inconsistency in the response
That is actually an additional field we added beyond the specification for Access Tokens (of which there are more types than just provided by Authorization Code Grant internally) to match our previous provider response. I can look into getting it added to the Refresh Token response, but given it is already calculable by adding the response time to the expires_in I don’t know when it will get prioritized among our other work.
Thanks for your reply. As you mentioned, it can be calculated using expires_in, but I was wondering why it was omitted in the refresh token API. I wanted to confirm if there are any additional use cases behind it.