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