Need to keep same refreshtoken after creating new access token by refresh token

Hi,

I have requirement like my refresh token will expire in 6 month, and it will be used to create new access token as soon as access token exipre. as of now when i will create new access token by refresh token new access token as well as refresh token will be generate. and old refresh token will invalidate.

But my requirement is it has to create new access token but it is to keep the old refresh token as it is.

Please let me know how i can achieve this in apigee.

Solved Solved
0 2 270
1 ACCEPTED SOLUTION

use the element ReuseRefreshToken which will let you reuse the refresh token until it expures

<ReuseRefreshToken>true</ReuseRefreshToken>

View solution in original post

2 REPLIES 2

use the element ReuseRefreshToken which will let you reuse the refresh token until it expures

<ReuseRefreshToken>true</ReuseRefreshToken>

Thanks for your reply