Show / Hide Table of Contents

Class AppThreeLeggedOAuthCredential

The value of this attribute persists any OAuth access token that the system uses to connect to this ManagedApp. The system obtains this access token using an OAuth protocol flow that could be two-legged or three-legged. A two-legged flow involves only the requester and the server. A three-legged flow also requires the consent of a user -- in this case the consent of an administrator.
SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: complex
Inheritance
object
AppThreeLeggedOAuthCredential
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.IdentitydomainsService.Models
Assembly: OCI.DotNetSDK.Identitydomains.dll
Syntax
public class AppThreeLeggedOAuthCredential

Properties

AccessToken

Declaration
[JsonProperty(PropertyName = "accessToken")]
public string AccessToken { get; set; }
Property Value
Type Description
string

Access Token
SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • idcsSensitive: encrypt
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

AccessTokenExpiry

Declaration
[JsonProperty(PropertyName = "accessTokenExpiry")]
public string AccessTokenExpiry { get; set; }
Property Value
Type Description
string

Access token expiry
SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: dateTime
  • uniqueness: none

RefreshToken

Declaration
[JsonProperty(PropertyName = "refreshToken")]
public string RefreshToken { get; set; }
Property Value
Type Description
string

Refresh Token
SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • idcsSensitive: encrypt
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
In this article
Back to top