Skip to main content
Question

How to retrieve a RefreshToken along-with Access token using JWT (API) Authentication option

  • May 22, 2025
  • 2 replies
  • 33 views

Forum|alt.badge.img

How can we retrieve a Refresh token along-with Access token when using JWT as an Authentication mode ? Is it even possible ? 

2 replies

Forum|alt.badge.img

 When requesting tokens using JWT authentication, there is no refresh token.  This is because you don't need one; your application can always generate new tokens by sending a JWT.  The refresh token is unnecessary for this authentication type.


Forum|alt.badge.img

 , Thansk for your response.