OAuthClient is defined in the Telligent.Evolution.Extensibility.Api.Entities.Version1 namespace of Telligent.Evolution.Platform.dll
Definition
class OAuthClient
{
IEnumerable<string> AllowedGrantTypes { get; set; }
IList<OAuthClientScope> AllowedScopes { get; set; }
Guid ApplicationId { get; }
string CallbackUrl { get; set; }
IList<string> CallbackUrls { get; set; }
string ClientType { get; set; }
string Description { get; set; }
Guid Id { get; set; }
bool IsTrusted { get; set; }
string Name { get; set; }
Guid NodeId { get; }
bool IsAllowedGrantType(string grantType);
}
Properties
| Name | Type | Description | Default | Options |
|---|---|---|---|---|
| AllowedGrantTypes | IEnumerable<string> | |||
| AllowedScopes | IList<OAuthClientScope> | |||
| ApplicationId | Guid | A Guid uniquely identifying the application. | ||
| CallbackUrl Obsolete | string | Obsolete in 12: Use CallBackUrls instead | ||
| CallbackUrls | IList<string> | |||
| ClientType | string | |||
| Description | string | |||
| Id | Guid | |||
| IsTrusted | bool | |||
| Name | string | |||
| NodeId | Guid |
Methods
bool IsAllowedGrantType(string grantType);
Parameters
| Name | Type | Description | Required | Default | Options |
|---|---|---|---|---|---|
| grantType | string | Grant Type | Required |
Return Type
bool