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.

ヘルプとサポート

この記事はお役に立ちましたか?

フィードバック