You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 50 Next »

URLhttps://<baseurl>/oauth/.well-known/openid-configuration
RequestGET
AuthenticationNone (public)
Request parametersNone
Response elementsJSON structure according to standard.
ExampleSee below

Openid-configuration is a standard endpoint that returns a JSON-formatted response containing configuration metadata in terms of key properties of the OIDC Provider. Among other things this endpoint is used to token signature validation.

Example

Request
GET /oidc/oauth/.well-known/openid-configuration HTTP/1.1
cache-control: no-cache
Postman-Token: 3843b6d8-5954-46f6-b569-ccaf00147f96
User-Agent: PostmanRuntime/3.0.11-hotfix.2
Accept: */*
Host: preprod.bankidapis.no
Connection: close
Response
TTP/1.1 200 OK
Content-Type: application/json;charset=utf-8
Server: Microsoft-IIS/8.5
X-Powered-By: ARR/3.0
X-Powered-By: ASP.NET
Date: Mon, 22 May 2017 21:52:32 GMT
Connection: close
Content-Length: 1369

{"issuer":"https://preprod.bankidapis.no","authorization_endpoint":"https://preprod.bankidapis.no/oidc/oauth/authorize","token_endpoint":"https://preprod.bankidapis.no/oidc/oauth/token","userinfo_endpoint":"https://preprod.bankidapis.no/oidc/oauth/userinfo","jwks_uri":"https://preprod.bankidapis.no/oidc/oauth/userinfo/jwk","scopes_supported":["standard_bankid","address","phone","operational-status-read","nnin","openid","profile","operational-status-write","email"],"response_types_supported":["code","token","id_token","id_token token","code token","code id_token","code id_token token"],"response_modes_supported":["query","fragment","form_post"],"grant_types_supported":["authorization_code"],"subject_types_supported":["public"],"id_token_signing_alg_values_supported":["RS256"],"userinfo_signing_alg_values_supported":["RS256","none"],"token_endpoint_auth_methods_supported":["client_secret_post","client_secret_basic"],"claim_types_supported":["normal"],"claims_supported":["preferred_username","name","sub","iat","iss","auth_time","exp","birthdate","nonce","amr","azp","bid_code","aud","at_hash","c_hash","nnin","address","phone"],"claims_parameter_supported":false,"ui_locales_supported":["no","en"],"login_hint_supported":"[BIM|BID][:\\d{11}][:\\d{8}][:\\d{6}] for respectively client_type, nnin, phoneNo, birthday","serverVersion":"bankid-oauth-api 1.2.7"}
  • No labels