OpenID Discovery Endpoint
Curl request
$ curl 'https://stg-id.singpass.gov.sg/.well-known/openid-configuration' -i -X GET \
-H 'Accept: application/json'HTTP request
GET /.well-known/openid-configuration HTTP/1.1
Accept: application/json
Host: stg-id.singpass.gov.sgHTTP response
HTTP/1.1 200 OK
Cache-Control: max-age=21600, must-revalidate, no-transform, public
X-XSS-Protection: 0
X-Frame-Options: DENY
Date: Thu, 26 Sep 2024 03:38:09 GMT
Connection: keep-alive
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
X-Content-Type-Options: nosniff
Transfer-Encoding: chunked
Content-Type: application/json
Content-Length: 1125
{
"issuer" : "https://stg-id.singpass.gov.sg",
"authorization_endpoint" : "https://stg-id.singpass.gov.sg/auth",
"jwks_uri" : "https://stg-id.singpass.gov.sg/.well-known/keys",
"response_types_supported" : [ "code" ],
"scopes_supported" : [ "openid" ],
"subject_types_supported" : [ "public" ],
"claims_supported" : [ "nonce", "aud", "iss", "sub", "exp", "iat" ],
"grant_types_supported" : [ "authorization_code", "urn:openid:params:grant-type:ciba" ],
"token_endpoint" : "https://stg-id.singpass.gov.sg/token",
"token_endpoint_auth_methods_supported" : [ "private_key_jwt" ],
"token_endpoint_auth_signing_alg_values_supported" : [ "ES256", "ES384", "ES512" ],
"id_token_signing_alg_values_supported" : [ "ES256" ],
"id_token_encryption_alg_values_supported" : [ "ECDH-ES+A256KW", "ECDH-ES+A192KW", "ECDH-ES+A128KW" ],
"id_token_encryption_enc_values_supported" : [ "A256CBC-HS512" ],
"backchannel_authentication_endpoint" : "https://stg-id.singpass.gov.sg/bc-auth",
"backchannel_token_delivery_modes_supported" : [ "poll" ],
"userinfo_endpoint" : "https://stg-id.singpass.gov.sg/userinfo"
}HTTPie request
Request body
Response body
Response fields
Path
Type
Description
Last updated
Was this helpful?