Saltar al contenido

Julio Pari (IT Architect IBM)

Si te ha interesado este artículo y deseas un apoyo o asesoría en algún requerimiento, envíame un mensaje a: (info@juliopari.com) o sino a través de Linkedin: https://www.linkedin.com/in/juliopari/

OAuth2 grant types – flows

Flow Authorization Code Flow Client credentials Flow Password Flow Implicit Fuente https://docs.vmware.com/en/Single-Sign-On-for-VMware-Tanzu-Application-Service/1.14/sso/GUID-grant-types.html#resource-owner-password-grant-type-6

Ping Federate Collection Postman OAuth2 authorization token

PingFederate OAuth Endpoints.postman_collection.zip Source: https://blog.bytebytego.com/p/ep34-session-cookie-jwt-token-sso OAuth2 flow authotization_code Step 1 curl –location -g –request GET ‘https://{{URL}}/as/authorization.oauth2?response_type=code&client_id={{client_id}}&redirect_uri={{redirect_uri}}&scope=openid profile’ Step 2 curl –location -g –request POST ‘https://{{URL}}/as/token.oauth2?grant_type=authorization_code&redirect_uri={{redirect_uri}}&code=A9n8KAeWuo0vtTEj_oc4qSISHxlMYhwSTBQWIHwU%23/’ \ –header ‘Content-Type: application/x-www-form-urlencoded’ \ –header ‘Authorization: Basic e3tjbGllbnRfaWR9fTp7e2NsaWVudF9zZWNyZXR9fQ==’ OAuth2 flow implicit… Leer más »Ping Federate Collection Postman OAuth2 authorization token