solo-io / gloo-portal-issues

Public tracker for issues related to Gloo Portal
https://docs.solo.io/gloo-portal/latest/
1 stars 3 forks source link

Ability to show/copy the JWT access token fetched from IdP, by the users belong to the IdP group, in the GlooPortal #194

Open sailinnthu opened 1 year ago

sailinnthu commented 1 year ago

Describe the solution you'd like Users belong to the (IdP) group can get the JWT access token from GlooPortal.

Screenshot 2022-12-05 at 3 34 53 PM

Now the user is logged in using OIDC.

Screenshot 2022-12-05 at 3 35 40 PM Screenshot 2022-12-05 at 3 36 08 PM

e.g: fetch the access token from IDP

token=$(curl -s -d "client_id=admin-cli" -d "username=user1" -d "password=password" -d "grant_type=password" "$KEYCLOAK_URL/realms/master/protocol/openid-connect/token" | jq -r .access_token)

The Users belong to the (IdP) group would like to get the JWT access token from GlooPortal.

Screenshot 2022-12-05 at 3 39 03 PM