Class OauthMetadata
Authorization details required to get access token from IDP for accessing protected resources.
Inherited Members
Namespace: Oci.KeymanagementService.Models
Assembly: OCI.DotNetSDK.Keymanagement.dll
Syntax
public class OauthMetadata
Properties
ClientAppId
Declaration
[Required(ErrorMessage = "ClientAppId is required.")]
[JsonProperty(PropertyName = "clientAppId")]
public string ClientAppId { get; set; }
Property Value
Type | Description |
---|---|
string | ID of the client app created in IDP. |
Remarks
Required
ClientAppSecret
Declaration
[Required(ErrorMessage = "ClientAppSecret is required.")]
[JsonProperty(PropertyName = "clientAppSecret")]
public string ClientAppSecret { get; set; }
Property Value
Type | Description |
---|---|
string | Secret of the client app created in IDP. |
Remarks
Required
IdcsAccountNameUrl
Declaration
[Required(ErrorMessage = "IdcsAccountNameUrl is required.")]
[JsonProperty(PropertyName = "idcsAccountNameUrl")]
public string IdcsAccountNameUrl { get; set; }
Property Value
Type | Description |
---|---|
string | Base URL of the IDCS account where confidential client app is created. |
Remarks
Required