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
I had made an assumption that the output of /api/oauth/token would be the same as that of /api/v1/auth/token, but it is not.
In /api/v1/auth/token, the token key is token and the expires token is expires.
In /api/oauth/token, the token key is access_token and the expires token is expires_in.
Furthermore, the time outputted from the expires key differs; a timestamp vs. the number of seconds until expiry.
The text was updated successfully, but these errors were encountered:
I had made an assumption that the output of
/api/oauth/token
would be the same as that of/api/v1/auth/token
, but it is not.In
/api/v1/auth/token
, the token key istoken
and the expires token isexpires
.In
/api/oauth/token
, the token key isaccess_token
and the expires token isexpires_in
.Furthermore, the time outputted from the expires key differs; a timestamp vs. the number of seconds until expiry.
The text was updated successfully, but these errors were encountered: