OauthAuthorizationRequestOptions
is defined in the Telligent.Evolution.Extensibility.Api.Version1
namespace of Telligent.Evolution.Platform.dll
Definition
class OauthAuthorizationRequestOptions { string PKCECodeChallenge { get; set; } string PKCECodeChallengeMethod { get; set; } string Scope { get; set; } string State { get; set; } }
Properties
Name | Type | Description | Default | Options |
---|---|---|---|---|
PKCECodeChallenge | string | The PKCE code challenge. Required when using a public client. | ||
PKCECodeChallengeMethod | string | The PKCE code challenge hash method. Required when using a PKCECodeChallenge and currently only S256 is a supported value. | ||
Scope | string | The scope(s) for the authorization code to use, space delimited. These scopes must also be assigned. | ||
State | string | Additional information that is needed by the client. It is passed back to the client when successful. |