Show / Hide Table of Contents

Class OauthMetadata

Authorization details required to get access token from IDP for accessing protected resources.

Inheritance
object
OauthMetadata
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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

In this article
Back to top