tencent cloud

문서Tencent OneID Identity Security

Obtaining OpenID Provider Configuration Information

Download
포커스 모드
폰트 크기
마지막 업데이트 시간: 2026-08-26 15:36:23
AI 번역

API Description

Applications can obtain the configuration information of the OIDC authorization server through this interface, thereby simplifying local configuration. For details on the specific configuration information and its meaning, see the OpenID Connect Discovery standard.

Supported Application Types

Web applications, single-page applications, mobile apps, and M2M applications.

Request Method

GET

Request path

/.well-known/openid-configuration

Request Example

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

Normal Response Example

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 service address for obtaining OAuth 2.0 authorization.
token_endpoint
String
The service address for obtaining OAuth 2.0 tokens.
jwks_uri
String
The service address for obtaining the JWT public key.
grant_types_supported
Array
Supported OAuth 2.0 Grant Types.
response_types_supported
Array
The Response Types supported by the OAuth 2.0 authorization service.
token_endpoint_auth_methods_supported
Array
The authentication methods supported by the OAuth 2.0 Token service.
subject_types_supported
Array
Supported OIDC Subject Identifier Types.
id_token_signing_alg_values_supported
Array
Supported JWS signature algorithms.
scopes_supported
Array
Supported OAuth 2.0 Scopes.

도움말 및 지원

문제 해결에 도움이 되었나요?

피드백