-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for Sign out with ID Token for PingOne Platform
- Loading branch information
1 parent
b886060
commit ab48f4a
Showing
4 changed files
with
96 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
...TestHost/SharedTestFiles/TestData/MockResponseData/Discovery/discoveryWithPingEndIdp.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"responsePayload": { | ||
"issuer" : "https://auth.pingone.ca/02fb4743-189a-4bc7-9d6c-a919edfe6447/as", | ||
"authorization_endpoint" : "https://auth.pingone.ca/02fb4743-189a-4bc7-9d6c-a919edfe6447/as/authorize", | ||
"pushed_authorization_request_endpoint" : "https://auth.pingone.ca/02fb4743-189a-4bc7-9d6c-a919edfe6447/as/par", | ||
"token_endpoint" : "https://auth.pingone.ca/02fb4743-189a-4bc7-9d6c-a919edfe6447/as/token", | ||
"userinfo_endpoint" : "https://auth.pingone.ca/02fb4743-189a-4bc7-9d6c-a919edfe6447/as/userinfo", | ||
"jwks_uri" : "https://auth.pingone.ca/02fb4743-189a-4bc7-9d6c-a919edfe6447/as/jwks", | ||
"end_session_endpoint" : "https://auth.pingone.ca/02fb4743-189a-4bc7-9d6c-a919edfe6447/as/signoff", | ||
"ping_end_idp_session_endpoint" : "https://auth.pingone.ca/02fb4743-189a-4bc7-9d6c-a919edfe6447/idp/signoff", | ||
"check_session_iframe" : "https://auth.pingone.ca/02fb4743-189a-4bc7-9d6c-a919edfe6447/as/checksession", | ||
"introspection_endpoint" : "https://auth.pingone.ca/02fb4743-189a-4bc7-9d6c-a919edfe6447/as/introspect", | ||
"revocation_endpoint" : "https://auth.pingone.ca/02fb4743-189a-4bc7-9d6c-a919edfe6447/as/revoke", | ||
"device_authorization_endpoint" : "https://auth.pingone.ca/02fb4743-189a-4bc7-9d6c-a919edfe6447/as/device_authorization", | ||
"claims_parameter_supported" : false, | ||
"request_parameter_supported" : true, | ||
"request_uri_parameter_supported" : false, | ||
"require_pushed_authorization_requests" : false, | ||
"scopes_supported" : [ "openid", "profile", "email", "address", "phone", "offline_access" ], | ||
"response_types_supported" : [ "code", "id_token", "token id_token", "code id_token", "code token", "code token id_token" ], | ||
"response_modes_supported" : [ "pi.flow", "query", "fragment", "form_post" ], | ||
"grant_types_supported" : [ "authorization_code", "implicit", "client_credentials", "refresh_token", "urn:ietf:params:oauth:grant-type:device_code" ], | ||
"subject_types_supported" : [ "public" ], | ||
"id_token_signing_alg_values_supported" : [ "RS256" ], | ||
"userinfo_signing_alg_values_supported" : [ "none" ], | ||
"request_object_signing_alg_values_supported" : [ "none", "HS256", "HS384", "HS512", "RS256", "RS384", "RS512" ], | ||
"token_endpoint_auth_methods_supported" : [ "client_secret_basic", "client_secret_post", "client_secret_jwt", "private_key_jwt" ], | ||
"token_endpoint_auth_signing_alg_values_supported" : [ "HS256", "HS384", "HS512", "RS256", "RS384", "RS512" ], | ||
"claim_types_supported" : [ "normal" ], | ||
"claims_supported" : [ "sub", "iss", "auth_time", "acr", "name", "given_name", "family_name", "middle_name", "preferred_username", "profile", "picture", "zoneinfo", "phone_number", "updated_at", "address", "email", "locale" ], | ||
"code_challenge_methods_supported" : [ "plain", "S256" ] | ||
}, | ||
"response": { | ||
"statusCode": 200, | ||
"url": "http://openam.example.com:8081/openam/.well-known/openid-configuration", | ||
"httpVersion": "HTTP/1.1", | ||
"headerFields": { | ||
"Content-Length": "2", | ||
"Content-Type": "application/json;charset=UTF-8", | ||
"Content-API-Version": "resource=1.0", | ||
"Date": "Tue, 05 May 2020 21:49:02 GMT", | ||
"X-Frame-Options": "SAMEORIGIN", | ||
"X-Content-Type-Options": "nosniff, nosniff" | ||
} | ||
} | ||
} |