tencent cloud

Customer Identity and Access Management

Product Introduction
Overview
Strengths
Use Cases
Purchase Guide
Operation Guide
User pool management
User management
Application management
Authentication management
Audit management
Custom settings
Development Guide
Overview
Access via Authentication API
Get User Information
Update User Information
Modify User Password
Reset User Password
Get Token
Get JWT Public Key
Refresh Token
Revoke Token
Get OpenID Provider Configuration
API Documentation
History
Introduction
API Category
Making API Requests
User Management APIs
Data Sync APIs
Audit Management APIs
Data Types
Error Codes
FAQs
Features
Billing
CIAM Policy
Privacy Policy
Data Processing And Security Agreement

Get OpenID Provider Configuration

PDF
Focus Mode
Font Size
Last updated: 2023-12-22 11:43:32

API Description

This API is used to get the configurations of the OpenID Connect (OIDC) authorization server for simplified local configurations. For more information about the configurations, see OpenID Connect Discovery.

Supported Applications

Web applications, single-page applications (SPA), mobile applications, and machine-to-machine (M2M) applications.

Request Method

GET

Request Path

/.well-known/openid-configuration

Sample Requests

GET /.well-known/openid-configuration HTTP/1.1
Host: sample.portal.tencentciam.com

Sample Success Responses

HTTP/1.1 200 OK
Content-Type: application/json

{
"issuer" : "https://sample.portal.tencentciam.com",
"authorization_endpoint" : "https://sample.portal.tencentciam.com/oauth2/authorize",
"token_endpoint" : "https://sample.portal.tencentciam.com/oauth2/token",
"token_endpoint_auth_methods_supported" : [ "client_secret_basic", "client_secret_post" ],
"jwks_uri" : "https://sample.portal.tencentciam.com/oauth2/jwks",
"response_types_supported" : [ "code" ],
"grant_types_supported" : [ "authorization_code", "client_credentials", "refresh_token" ],
"subject_types_supported" : [ "public" ],
"id_token_signing_alg_values_supported" : [ "RS256" ],
"scopes_supported" : [ "openid" ]
}

Response Parameters

Parameter
Data Type
Description
issuer
String
OIDC issuer.
authorization_endpoint
String
The URL of the OAuth 2.0 authorization endpoint.
token_endpoint
String
The URL of the OAuth 2.0 token endpoint.
jwks_uri
String
The URL of the JSON Web Token (JWT) public key.
grant_types_supported
Array
Supported OAuth 2.0 Grant Type values.
response_types_supported
Array
Supported OAuth 2.0 Response Type values.
token_endpoint_auth_methods_supported
Array
The authentication methods supported by the OAuth 2.0 token endpoint.
subject_types_supported
Array
Supported OIDC Subject Identifier Type values.
id_token_signing_alg_values_supported
Array
Supported JSON Web Signature (JWS) algorithms.
scopes_supported
Array
Supported OAuth 2.0 scope values.

Help and Support

Was this page helpful?

Help us improve! Rate your documentation experience in 5 mins.

Feedback