public class UpdateUserOIDCConfigRequest extends AbstractModel
header, skipSign
Constructor and Description |
---|
UpdateUserOIDCConfigRequest() |
UpdateUserOIDCConfigRequest(UpdateUserOIDCConfigRequest source)
NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
|
Modifier and Type | Method and Description |
---|---|
String |
getAuthorizationEndpoint()
Get 授权请求Endpoint,OpenID Connect身份提供商授权地址。对应企业IdP提供的Openid-configuration中"authorization_endpoint"字段的值,该URL必须以https开头,符合标准URL格式,不允许带有query参数(以?标识)、fragment片段(以#标识)和登录信息(以@标识)。
|
String |
getClientId()
Get 客户端ID,在OpenID Connect身份提供商注册的客户端ID,允许英文字母、数字、特殊字符.-_:/,不能以特殊字符.-_:/开头,单个客户端ID最大64个字符。
|
String |
getDescription()
Get 描述,长度为1~255个英文或中文字符,默认值为空。
|
String |
getIdentityKey()
Get RSA签名公钥,JWKS格式,需要进行base64_encode。验证OpenID Connect身份提供商ID Token签名的公钥。为了您的账号安全,建议您定期轮换签名公钥。
|
String |
getIdentityUrl()
Get 身份提供商URL。OpenID Connect身份提供商标识。
对应企业IdP提供的Openid-configuration中"issuer"字段的值,该URL必须以https开头,符合标准URL格式,不允许带有query参数(以?标识)、fragment片段(以#标识)和登录信息(以@标识)。
|
String |
getMappingFiled()
Get 映射字段名称。IdP的id_token中哪一个字段映射到子用户的用户名,通常是sub或者name字段,仅支持英文字母、数字、汉字、符号@、&_[]-的组合,1-255个中文或英文字符
|
String |
getResponseMode()
Get 授权请求Response mode。授权请求返回模式,有form_post和fragment两种可选模式,推荐选择form_post模式。
|
String |
getResponseType()
Get 授权请求Response type,有code,id_token,固定值id_token。
|
String[] |
getScope()
Get 授权请求Scope。有openid; email;profile三种。代表授权请求信息范围openid表示请求访问用户的身份信息,email表示请求访问用户的电子邮件地址,profile表示请求访问用户的基本信息。默认必选openid。
|
void |
setAuthorizationEndpoint(String AuthorizationEndpoint)
Set 授权请求Endpoint,OpenID Connect身份提供商授权地址。对应企业IdP提供的Openid-configuration中"authorization_endpoint"字段的值,该URL必须以https开头,符合标准URL格式,不允许带有query参数(以?标识)、fragment片段(以#标识)和登录信息(以@标识)。
|
void |
setClientId(String ClientId)
Set 客户端ID,在OpenID Connect身份提供商注册的客户端ID,允许英文字母、数字、特殊字符.-_:/,不能以特殊字符.-_:/开头,单个客户端ID最大64个字符。
|
void |
setDescription(String Description)
Set 描述,长度为1~255个英文或中文字符,默认值为空。
|
void |
setIdentityKey(String IdentityKey)
Set RSA签名公钥,JWKS格式,需要进行base64_encode。验证OpenID Connect身份提供商ID Token签名的公钥。为了您的账号安全,建议您定期轮换签名公钥。
|
void |
setIdentityUrl(String IdentityUrl)
Set 身份提供商URL。OpenID Connect身份提供商标识。
对应企业IdP提供的Openid-configuration中"issuer"字段的值,该URL必须以https开头,符合标准URL格式,不允许带有query参数(以?标识)、fragment片段(以#标识)和登录信息(以@标识)。
|
void |
setMappingFiled(String MappingFiled)
Set 映射字段名称。IdP的id_token中哪一个字段映射到子用户的用户名,通常是sub或者name字段,仅支持英文字母、数字、汉字、符号@、&_[]-的组合,1-255个中文或英文字符
|
void |
setResponseMode(String ResponseMode)
Set 授权请求Response mode。授权请求返回模式,有form_post和fragment两种可选模式,推荐选择form_post模式。
|
void |
setResponseType(String ResponseType)
Set 授权请求Response type,有code,id_token,固定值id_token。
|
void |
setScope(String[] Scope)
Set 授权请求Scope。有openid; email;profile三种。代表授权请求信息范围openid表示请求访问用户的身份信息,email表示请求访问用户的电子邮件地址,profile表示请求访问用户的基本信息。默认必选openid。
|
void |
toMap(HashMap<String,String> map,
String prefix)
Internal implementation, normal users should not use it.
|
any, fromJsonString, getBinaryParams, GetHeader, getMultipartRequestParams, getSkipSign, isStream, set, SetHeader, setParamArrayObj, setParamArraySimple, setParamObj, setParamSimple, setSkipSign, toJsonString
public UpdateUserOIDCConfigRequest()
public UpdateUserOIDCConfigRequest(UpdateUserOIDCConfigRequest source)
public String getIdentityUrl()
public void setIdentityUrl(String IdentityUrl)
IdentityUrl
- 身份提供商URL。OpenID Connect身份提供商标识。
对应企业IdP提供的Openid-configuration中"issuer"字段的值,该URL必须以https开头,符合标准URL格式,不允许带有query参数(以?标识)、fragment片段(以#标识)和登录信息(以@标识)。public String getClientId()
public void setClientId(String ClientId)
ClientId
- 客户端ID,在OpenID Connect身份提供商注册的客户端ID,允许英文字母、数字、特殊字符.-_:/,不能以特殊字符.-_:/开头,单个客户端ID最大64个字符。public String getAuthorizationEndpoint()
public void setAuthorizationEndpoint(String AuthorizationEndpoint)
AuthorizationEndpoint
- 授权请求Endpoint,OpenID Connect身份提供商授权地址。对应企业IdP提供的Openid-configuration中"authorization_endpoint"字段的值,该URL必须以https开头,符合标准URL格式,不允许带有query参数(以?标识)、fragment片段(以#标识)和登录信息(以@标识)。public String getResponseType()
public void setResponseType(String ResponseType)
ResponseType
- 授权请求Response type,有code,id_token,固定值id_token。public String getResponseMode()
public void setResponseMode(String ResponseMode)
ResponseMode
- 授权请求Response mode。授权请求返回模式,有form_post和fragment两种可选模式,推荐选择form_post模式。public String getMappingFiled()
public void setMappingFiled(String MappingFiled)
MappingFiled
- 映射字段名称。IdP的id_token中哪一个字段映射到子用户的用户名,通常是sub或者name字段,仅支持英文字母、数字、汉字、符号@、&_[]-的组合,1-255个中文或英文字符public String getIdentityKey()
public void setIdentityKey(String IdentityKey)
IdentityKey
- RSA签名公钥,JWKS格式,需要进行base64_encode。验证OpenID Connect身份提供商ID Token签名的公钥。为了您的账号安全,建议您定期轮换签名公钥。public String[] getScope()
public void setScope(String[] Scope)
Scope
- 授权请求Scope。有openid; email;profile三种。代表授权请求信息范围openid表示请求访问用户的身份信息,email表示请求访问用户的电子邮件地址,profile表示请求访问用户的基本信息。默认必选openid。public String getDescription()
public void setDescription(String Description)
Description
- 描述,长度为1~255个英文或中文字符,默认值为空。Copyright © 2024. All rights reserved.