I’m developing a React application that uses Okta for authentication. In our setup, we have two Okta groups: one for regular users and one for admin users.
I would like to enable a feature where admin users can impersonate other users. Specifically, when an admin clicks an “Impersonate” button, they should be able to see a list of users from the regular users group. Upon selecting a user, the admin should be able to “log in” as that user and view their account page.
Is this kind of impersonation possible using Okta? If so, what would be the recommended way to implement this functionality?