Properties
| Name | Access | Type | Description |
|---|---|---|---|
| AllowedGrantTypes | Read, Write | IEnumerable of String | Allowed Grant Types |
| AllowedScopes | Read, Write | IList of OAuthClientScope | Allowed Scopes |
| ApplicationId | Read | Guid | A Guid uniquely identifying the application. |
| CallbackUrl | Read, Write | String | Callback Url |
| CallbackUrls | Read, Write | IList of String | Callback Urls |
| ClientType | Read, Write | String | Client Type |
| Description | Read, Write | String | Description |
| Errors | Read | IList of Error | Errors |
| Id | Read, Write | Guid | Id |
| IsTrusted | Read, Write | Boolean | Is Trusted |
| Name | Read, Write | String | Name |
| NodeId | Read | Guid | Node Id |
| Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $oAuthClient.HasErrors())
JavaScript
var booleanResponse = oAuthClient.HasErrors();
Returns
BooleanHasWarnings
Velocity
#set($booleanResponse = $oAuthClient.HasWarnings())
JavaScript
var booleanResponse = oAuthClient.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $oAuthClient.HasWarningsOrErrors())
JavaScript
var booleanResponse = oAuthClient.HasWarningsOrErrors();
Returns
BooleanIsAllowedGrantType
Velocity
#set($booleanResponse = $oAuthClient.IsAllowedGrantType($grantType))
JavaScript
var booleanResponse = oAuthClient.IsAllowedGrantType(grantType);
Parameters
| Name | Type | Description | Required | Default | Options |
|---|---|---|---|---|---|
| grantType | String | Grant Type | Required |
Returns
BooleanThrowErrors
Velocity
$oAuthClient.ThrowErrors()
JavaScript
oAuthClient.ThrowErrors();