OpenID Connect Discovery
IBM Verify Identity Access provides an
endpoint for discovery which is the metadeta endpoint. However, the specification strictly states
that the discovery endpoint is /.well-known/openid-configuration appended to the
issuer endpoint.
We can use HTTP transformation rule to route requests to
/.well-known/openid-configuration endpoint.
An example is attached with the compressed files.
For more information, refer to the OIDC Conformance-Example 1.7 in the oidc_op_conformance.zip file.
Create an HTTP Transformation rule by using the httptransform.xsl and call it
httptransform.
https://www.myidp.ibm.com/test. The WebSEAL configuration must be updated.
[http-transformations]
updateuri = httptransform
[http-transformations:updateuri]
request-match = request:GET /test/.well-known/openid-configuration*Also, there are some optional discovery parameters, which are required for conformance. To add
these values, the metadata.json under Federation or
AAC, Template Files can be
modified.
- Adding "claims_supported"with the following values:
["realmName","preferred_username","given_name","uid","upn","groupIds", "employee_id","name","tenantId","mobile_number","department","job_title", "family_name","email"] - Adding "userinfo_signing_alg_values_supported" with this value: ["RS256"]
-
Adding "request_parameter_supported" with the following value :
<%var supported = true;templateContext.response.body.write(supported);%>