-
I noticed your Gold Offering replaces the username with the GUID rather than the human readable username based on this visual What are some considerations I should keep in mind with respect to my app's architecture and code base? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I believe many teams make use of |
Beta Was this translation helpful? Give feedback.
I believe many teams make use of
IDIR username
in their applications, andIDIR username
is rather human-readable and is believed as a unique identifier for a specific IDIR user. As a matter of fact, it isunique
in the system, and yet, there is a security risk to giving privileges based on it at the application level in terms of theIDIR username
being re-used.Therefore, even though
IDIR username
can be found in a token payload attributeidir_username
of the Gold integration, it is highly recommended to useIDIR GUID
in applications by mapping topreferred_username
oridir_user_guid
attributes as a source of truth for the IDIR user.