Hello guys,
My use case is precisely as discussed by @larsf96 in a previous thread (persistent-custom-claims-in-access-token-when-using-refresh-tokens/111268). Wasn’t allowed to add the actual link–sorry about that.
@rueben.tiow partially answered (will-access-tokens-received-via-refresh-token-contain-the-custom-claims/131015) but this does not cover the use case mentioned by @larsf96:
[…] we will create an internal couplingID during the first token exchange and we want to store the couplingID in the access token and want to persist it even during refresh token exchanges.
Imagine the couplingID
is randomly generated during the first token exchange (e.g. converting the authorization code into access and refresh tokens) and set as a custom claim on the first access token. The goal is to keep setting the same couplingID
on all access tokens that are generated by the same refresh token. For this we need to store the couplingID
in the app metadata against some unique identifier (ideally the refresh token or its ID). However, I couldn’t find a unique identifier that remains the same across all the token exchanges performed with the same refresh token. I noticed that in post-login
there is event.refresh_token.id
which could acts as the unique identifier–however this is not available in the first token exchange which is when the couplingID
is generated… Therefore, there does not seem to be a way of persisting the couplingID
across token refreshes.
Simply running the same action without conditionals on each token exchange (as @rueben.tiow mentioned) is not an option as a different couplingID
would be generated for each access token–which defeats the goal.
This seems quite a big limitation as it prevents the API receiving requests authorized with access tokens generated by the same refresh token to be grouped together (via the couplingID
custom claim). Is there a way around it?
This is quite urgent for our company so please let me know
Summary
This text will be hidden