Definition
- Namespace:
- Tizen.Account.OAuth2
- Assembly:
- Tizen.Account.OAuth2.dll
- API Level:
- 3
Abstract wrapper class containing OAuth 2.0 request parameters for requesting an access token.
public abstract class TokenRequest : object
- Inheritance
-
- Derived
-
Properties
View Source
AuthenticationScheme
Client authentication scheme. Default is Basic
Declaration
public AuthenticationScheme AuthenticationScheme { get; set; }
Property Value
API Level: 3
Declaration
public ClientCredentials ClientSecrets { get; set; }
Property Value
API Level: 3
View Source
CustomData
Custom key-value parameters to be sent to the server
Declaration
public IEnumerable<KeyValuePair<string, string>> CustomData { get; set; }
Property Value
API Level: 3
Declaration
public abstract string GrantType { get; }
Property Value
API Level: 3
View Source
RedirectionEndPoint
The redirection endpoint of the auhorization flow.
Declaration
public Uri RedirectionEndPoint { get; set; }
Property Value
API Level: 3
Declaration
public IEnumerable<string> Scopes { get; set; }
Property Value
Type |
Description |
IEnumerable<String> |
|
API Level: 3
View Source
State
The client's state which is maintained between request and response.
Declaration
public string State { get; set; }
Property Value
API Level: 3
View Source
TokenEndpoint
The access token end point URL.
Declaration
public Uri TokenEndpoint { get; set; }
Property Value
API Level: 3
Extension Methods