0 | phase | <--<-- 0 --- Webfinger -->--> |
0 | not expected to do | WebFinger |
0 | phase | <--<-- 1 --- Discovery -->--> |
0 | provider_config | kwargs:{'issuer': 'https://isamfed.com:30443/test'}
|
1 | http response | url:https://isamfed.com:30443/test/.well-known/openid-configuration status_code:200
|
1 | ProviderConfigurationResponse | {
"authorization_endpoint": "https://isamfed.com:30443/mga/sps/oauth/oauth20/authorize",
"claims_parameter_supported": false,
"claims_supported": [
"realmName",
"preferred_username",
"given_name",
"uid",
"upn",
"groupIds",
"employee_id",
"name",
"tenantId",
"mobile_number",
"department",
"job_title",
"family_name",
"email"
],
"device_authorize_endpoint": "https://isamfed.com:30443/mga/sps/oauth/oauth20/device_authorize",
"grant_types_supported": [
"urn:ietf:params:oauth:grant-type:jwt-bearer",
"implicit",
"urn:ietf:params:oauth:grant-type:saml2-bearer",
"urn:ietf:params:oauth:grant-type:device_code",
"client_credentials",
"password",
"authorization_code",
"refresh_token"
],
"id_token_encryption_alg_values_supported": [
"A128KW"
],
"id_token_encryption_enc_values_supported": [
"A128CBC-HS256"
],
"id_token_signing_alg_values_supported": [
"RS256"
],
"introspect_endpoint": "https://isamfed.com:30443/mga/sps/oauth/oauth20/introspect",
"issuer": "https://isamfed.com:30443/test",
"jwks_uri": "https://isamfed.com:30443/mga/sps/jwks",
"name": "OIDCDefinition",
"poc": "https://isamfed.com:30443/mga/",
"registration_endpoint": "https://isamfed.com:30443/mga/sps/oauth/oauth20/register/OIDCDefinition",
"request_parameter_supported": true,
"request_uri_parameter_supported": true,
"require_request_uri_registration": false,
"response_modes_supported": [
"fragment",
"form_post"
],
"response_types_supported": [
"token",
"id_token",
"token id_token",
"code",
"code id_token",
"code token id_token",
"code token",
"none"
],
"revocation_endpoint": "https://isamfed.com:30443/mga/sps/oauth/oauth20/revoke",
"subject_types_supported": [
"public"
],
"token_endpoint": "https://isamfed.com:30443/mga/sps/oauth/oauth20/token",
"token_endpoint_auth_methods_supported": [
"private_key_jwt",
"client_secret_post",
"client_secret_basic"
],
"user_authorize_endpoint": "https://isamfed.com:30443/mga/sps/oauth/oauth20/user_authorize",
"userinfo_endpoint": "https://isamfed.com:30443/mga/sps/oauth/oauth20/userinfo",
"userinfo_signing_alg_values_supported": [
"RS256"
],
"version": "3.0"
}
|
1 | phase | <--<-- 2 --- Registration -->--> |
1 | not expected to do | Dynamic registration |
1 | phase | <--<-- 3 --- AsyncAuthn -->--> |
1 | AuthorizationRequest | {
"client_id": "clientID",
"nonce": "zuTtwYSHFSQwfY5H",
"redirect_uri": "https://op.certification.openid.net:61764/authz_cb",
"response_type": "code",
"scope": "openid",
"state": "vBhgoG78x7nK3gfD"
}
|
1 | redirect url | https://isamfed.com:30443/mga/sps/oauth/oauth20/authorize?state=vBhgoG78x7nK3gfD&nonce=zuTtwYSHFSQwfY5H&response_type=code&scope=openid&redirect_uri=https%3A%2F%2Fop.certification.openid.net%3A61764%2Fauthz_cb&client_id=clientID |
1 | redirect | https://isamfed.com:30443/mga/sps/oauth/oauth20/authorize?state=vBhgoG78x7nK3gfD&nonce=zuTtwYSHFSQwfY5H&response_type=code&scope=openid&redirect_uri=https%3A%2F%2Fop.certification.openid.net%3A61764%2Fauthz_cb&client_id=clientID |
2 | response | Response URL with query part |
2 | response | {'state': 'vBhgoG78x7nK3gfD', 'code': 'XoLJamkTviXzsJWkviTW0XIQnqF6pS'} |
2 | response | {'state': 'vBhgoG78x7nK3gfD', 'code': 'XoLJamkTviXzsJWkviTW0XIQnqF6pS'} |
2 | AuthorizationResponse | {
"code": "XoLJamkTviXzsJWkviTW0XIQnqF6pS",
"state": "vBhgoG78x7nK3gfD"
}
|
2 | phase | <--<-- 4 --- AccessToken -->--> |
2 | request | op_args: {'state': 'vBhgoG78x7nK3gfD'}, req_args: {'redirect_uri': 'https://op.certification.openid.net:61764/authz_cb'} |
2 | do_access_token_request | kwargs:{'request_args': {'redirect_uri': 'https://op.certification.openid.net:61764/authz_cb', 'code': 'XoLJamkTviXzsJWkviTW0XIQnqF6pS', 'state': 'vBhgoG78x7nK3gfD', 'grant_type': 'authorization_code', 'client_id': 'clientID'}, 'state': 'vBhgoG78x7nK3gfD', 'authn_method': 'client_secret_basic'}
|
2 | AccessTokenRequest | {
"code": "XoLJamkTviXzsJWkviTW0XIQnqF6pS",
"grant_type": "authorization_code",
"redirect_uri": "https://op.certification.openid.net:61764/authz_cb",
"state": "vBhgoG78x7nK3gfD"
}
|
2 | request_url | https://isamfed.com:30443/mga/sps/oauth/oauth20/token |
2 | request_http_args | {'headers': {'Authorization': 'Basic Y2xpZW50SUQ6Y2xpZW50U2VjcmV0', 'Content-Type': 'application/x-www-form-urlencoded'}} |
2 | request | grant_type=authorization_code&redirect_uri=https%3A%2F%2Fop.certification.openid.net%3A61764%2Fauthz_cb&code=XoLJamkTviXzsJWkviTW0XIQnqF6pS&state=vBhgoG78x7nK3gfD |
2 | http response | url:https://isamfed.com:30443/mga/sps/oauth/oauth20/token status_code:200
|
2 | response | {'access_token': 'lCeBOSyaxGAohUoQKu6c', 'refresh_token': 'seKkKHvHmy5qOzoRS9InQibQFN1YQ3iMLinKpjWq', 'scope': 'openid', 'id_token': 'eyJhbGciOiJBMTI4S1ciLCJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiY3R5IjoiSldUIn0.riKVCLvg6Nl0hcWzaUhpT3o-CdT1PT_wLqh8Eqh8NjQ0EZR7XRlqTg.nBwdo0KyZTO3TUZJQf9VxA.nXBZ5GjL3Gp6QBEe7y6FUosoao4VucqDkq7vcyfiQQ52ojWZIyKgAL0lVlWki2Q9vKVgVwQHjVaxzNoHxtX9_PhwMfEPe5NxAakpNX8ySr7iGpJ4C6YhyBGGA4LUj5NOR_WVM05VFYJWVpt52ipy4HjVKHgLUlQWmzlnYhU72W7qH7thmzx8JhaU21fMchRSgViIr4JuTGJLi6LV5yvrG1RJ31fuyS4tLQyIk0BAbbKPwzsm3uDooEhotzyNJvY-1PBNvlJbSYZbgW9Q1t0jc9P_Z8mNE6JF8a82SSLcT6M2HpExq88VhCxYGeoTSTCH4l--x2XN-_AVOnExYyw4Ta2r8i44aL8E7o8_-COGbzzNUkj1ITtDjW7ZAWE3pljnhzt61Y9KjvSrD4d1rwD9tqIjtZmtQutfgOXs24YA9qlP3KcY3bPn-V5ftnkgswgvB0fHMdMdcg1ooczD-yBpfbgjO5rLmyQ1o4cyTXSicnDQlxwE599s-NK1DwSO3pe8R-9Q0ghykT2k-LU6jDA0TE1oTtQ4yxfvPyJjVAyJernO3oXhgCf_VQeO72QO7eqp9vog3ka-MgK5jHJcd6VKVg92OA73mP9GitoG-M4h3ZXLV0NDchdu-Wyo6YHTddpDenHX-F1q-6X_njKczTzZj4P0D9RTt4NyvU69-8pAeNqBc3s-YllZGZusMpp3IKW66RFfZi739O6UDLM8yLme1IcXOHH4FhQCxUT37pR3S_TIJM-vEv7VZhQIRWbVCZpoWRg1W8Ey4UDqSDwqGL-_sNn11HpyZPzceP3JYq67uPmGZkVqd_qmP6XiEdDRBn5PWgBYRj45vzysSoMJxhU_egShF_7WXj2adb6uykwXWV8WlU6Qc83BrvUewVG78rpIzqthBIo-ig1NCREWmodLbTwV1CbovzkA567bg_60RRXcyWKLoEHfaaiDRzaukkZy.dIFHGZbr9Xk55IIcARWM5w', 'token_type': 'bearer', 'expires_in': 3599} |
2 | AccessTokenResponse | {
"access_token": "lCeBOSyaxGAohUoQKu6c",
"expires_in": 3599,
"id_token": {
"at_hash": "b5etGXItQANlw-YCIN0sHg",
"aud": [
"clientID"
],
"exp": 1560834516,
"iat": 1560831096,
"iss": "https://isamfed.com:30443/test",
"nonce": "zuTtwYSHFSQwfY5H",
"rt_hash": "fImQMlu0DKcKDr-RE-hGAw",
"sub": "testuser"
},
"refresh_token": "seKkKHvHmy5qOzoRS9InQibQFN1YQ3iMLinKpjWq",
"scope": "openid",
"token_type": "bearer"
}
|
2 | jws header | {'kid': '_uhPdeGrTWxobFeH0XbzjJpRrzp3CB9nknx1yFV1G-0', 'alg': 'RS256'} |
2 | jwe header | {'alg': 'A128KW', 'enc': 'A128CBC-HS256', 'cty': 'JWT'} |
2 | phase | <--<-- 5 --- Note -->--> |
3 | phase | <--<-- 6 --- AsyncAuthn -->--> |
3 | AuthorizationRequest | {
"client_id": "clientID",
"nonce": "dAFTzhCrryukblZU",
"prompt": [
"login"
],
"redirect_uri": "https://op.certification.openid.net:61764/authz_cb",
"response_type": "code",
"scope": "openid",
"state": "8qtjfOHdhay1EgmZ"
}
|
3 | redirect url | https://isamfed.com:30443/mga/sps/oauth/oauth20/authorize?state=8qtjfOHdhay1EgmZ&nonce=dAFTzhCrryukblZU&response_type=code&scope=openid&redirect_uri=https%3A%2F%2Fop.certification.openid.net%3A61764%2Fauthz_cb&prompt=login&client_id=clientID |
3 | redirect | https://isamfed.com:30443/mga/sps/oauth/oauth20/authorize?state=8qtjfOHdhay1EgmZ&nonce=dAFTzhCrryukblZU&response_type=code&scope=openid&redirect_uri=https%3A%2F%2Fop.certification.openid.net%3A61764%2Fauthz_cb&prompt=login&client_id=clientID |
6 | response | Response URL with query part |
6 | response | {'state': '8qtjfOHdhay1EgmZ', 'code': 'lGrnGwKouPK98BuqkgBDR23my54jiX'} |
6 | response | {'state': '8qtjfOHdhay1EgmZ', 'code': 'lGrnGwKouPK98BuqkgBDR23my54jiX'} |
6 | AuthorizationResponse | {
"code": "lGrnGwKouPK98BuqkgBDR23my54jiX",
"state": "8qtjfOHdhay1EgmZ"
}
|
6 | phase | <--<-- 7 --- AccessToken -->--> |
6 | request | op_args: {'state': '8qtjfOHdhay1EgmZ'}, req_args: {'redirect_uri': 'https://op.certification.openid.net:61764/authz_cb'} |
6 | do_access_token_request | kwargs:{'request_args': {'redirect_uri': 'https://op.certification.openid.net:61764/authz_cb', 'code': 'lGrnGwKouPK98BuqkgBDR23my54jiX', 'state': '8qtjfOHdhay1EgmZ', 'grant_type': 'authorization_code', 'client_id': 'clientID'}, 'state': '8qtjfOHdhay1EgmZ', 'authn_method': 'client_secret_basic'}
|
6 | AccessTokenRequest | {
"code": "lGrnGwKouPK98BuqkgBDR23my54jiX",
"grant_type": "authorization_code",
"redirect_uri": "https://op.certification.openid.net:61764/authz_cb",
"state": "8qtjfOHdhay1EgmZ"
}
|
6 | request_url | https://isamfed.com:30443/mga/sps/oauth/oauth20/token |
6 | request_http_args | {'headers': {'Authorization': 'Basic Y2xpZW50SUQ6Y2xpZW50U2VjcmV0', 'Content-Type': 'application/x-www-form-urlencoded'}} |
6 | request | grant_type=authorization_code&redirect_uri=https%3A%2F%2Fop.certification.openid.net%3A61764%2Fauthz_cb&code=lGrnGwKouPK98BuqkgBDR23my54jiX&state=8qtjfOHdhay1EgmZ |
6 | http response | url:https://isamfed.com:30443/mga/sps/oauth/oauth20/token status_code:200
|
6 | response | {'access_token': 'aIW1JREfb00ZRXbL3Nd0', 'refresh_token': 'i0ZjqeYnYn6kDwOz2QheUgmWOcMkEFwcyZ8PVXvK', 'scope': 'openid', 'id_token': 'eyJhbGciOiJBMTI4S1ciLCJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiY3R5IjoiSldUIn0.5FqY0yRacj_ZOHwp2P0HW5bqkpbf_Uh5-ZnrUDF6Fah_XrajzSV7kA.vTCAE-nwkzeXNJ7-KpzadQ.Vq79UMbBo7wSn97srnbBjmucm2ETU_r1_VXSdW-oUwOioaD13_a9YGLudM5dqmjoV5b95W407yhEoNHXK_SKYq-wUhGa-XP_WRmd0jfFKNMOT-dfBhZZHZsBYfIcoFgPb8AG2GGAZ9NEA64VfbX9njhKM3QSq_oHIysLvnsCl_CCacM0gSd49Fwd64bGDBGDLrv905-NxLrX-dgbC8K7SgYcQ_zda8eTksBM3oDQRve3WfQZAm87TU9pUIT4lpMDSj7QqS1_0qNeFIMP4N2J_5Gt0pfcw-Xp0XCgm_Av1DdWUPWTBvJV_SwztdT2FIHYME9l8nJxIA_CTzXdevmWLFGdMEsGVK8vqFobetlyTNvtNPmpmoBoUi2A53TYh97QrY1XLMIU52D_tQRbMdiJnjehzyZjL1R_gP9BGy8FA5NMQXGRqsX0i8pRjoyd7xQ0H1cRslq2Rv9bHeF6d3PLnCWnNgRNen36-gwAUhiaWKo3pMcp8RTJb_ripUOQzYbzdepXTaDreUims4QKjCscHsFdaXI7sEfI8TS1vhrulsOLOMZmwBBfwHjUMzAZYIAPHcCSKs_gT2aPgCpLzDGVYIYCSiuHDAWxsBAMFcHJBY-nzNZScZOle6lHn46Ry9bam72V4fIXfn5dx4XefaxkqZ-FT6Lv1PZPp3LS0K4mSPS8i2a_rKpQQ_SpmcdkftP8_reoWj8ndsDiUYCHvwQIrlp6yauxjnugTNYPthI-XscnUILneFkiH3Tje4Wo7cw2KAIY4whDCcVvbsqsEUCn2Fjg5HmipdpoJIE9q9XOit4UewYosUm3jR4GcR7r4lt8P7aNf6Gk_gUJ9CwdUjq6Jc6MAp4QCrqCciP2qQbCxPzWMUS_OeOd3fYNDY39tKq7Bxjrlpu6ZhfZAo9Hz5bsIaxmS3H2wOVk-tD3JE3VsDHra8y7YNaQOdhdBnVpSnHh.PUmqpfP386CdIq8K1d1gEw', 'token_type': 'bearer', 'expires_in': 3599} |
6 | AccessTokenResponse | {
"access_token": "aIW1JREfb00ZRXbL3Nd0",
"expires_in": 3599,
"id_token": {
"at_hash": "UAQHdXcBvt1qHaTZirHmRg",
"aud": [
"clientID"
],
"exp": 1560834520,
"iat": 1560831100,
"iss": "https://isamfed.com:30443/test",
"nonce": "dAFTzhCrryukblZU",
"rt_hash": "pE7sSDf05TakuIwLLDHyCw",
"sub": "testuser"
},
"refresh_token": "i0ZjqeYnYn6kDwOz2QheUgmWOcMkEFwcyZ8PVXvK",
"scope": "openid",
"token_type": "bearer"
}
|
6 | jws header | {'kid': '_uhPdeGrTWxobFeH0XbzjJpRrzp3CB9nknx1yFV1G-0', 'alg': 'RS256'} |
6 | jwe header | {'alg': 'A128KW', 'enc': 'A128CBC-HS256', 'cty': 'JWT'} |
6 | phase | <--<-- 8 --- Done -->--> |
6 | end | |
6 | assertion | MultipleSignOn |
6 | condition | multiple-sign-on: status=OK [Verifies that multiple authentications was used in the flow] |
6 | assertion | VerifyResponse |
6 | condition | verify-response: status=OK [Checks that the last response was one of a possible set of OpenID Connect Responses] |
6 | condition | Done: status=OK |