How do I refresh a token? #2099
-
Using this piece of json specification, I wrote a POST request (supplying an identifier and a password), and succesfully got a token and a refresh token return. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The lack of |
Beta Was this translation helpful? Give feedback.
The lack of
input
can definitely be a surprise! When you POST torefreshSession
, you include the refresh token you got fromcreateSession
in theAuthorization: Bearer ...
header, instead of the access token like with other calls.