Class AuthorizationRequest

Definition

Namespace:
Tizen.Account.OAuth2
Assembly:
Tizen.Account.OAuth2.dll
API Level:
3

The request parameters to be sent to authorization end point.

C#
Copy
public abstract class AuthorizationRequest
Inheritance
AuthorizationRequest
Derived

Properties

View Source

AuthorizationEndpoint

The authorization end point URL.

Declaration
C#
Copy
public Uri AuthorizationEndpoint { get; set; }
Property Value
Type Description
Uri
API Level: 3
View Source

ClientSecrets

Client secret credentials.

Declaration
C#
Copy
public ClientCredentials ClientSecrets { get; set; }
Property Value
Type Description
ClientCredentials
API Level: 3
View Source

CustomData

Custom key-value parameters to be sent to the server

Declaration
C#
Copy
public IEnumerable<KeyValuePair<string, string>> CustomData { get; set; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.String, System.String>>
API Level: 3
View Source

RedirectionEndPoint

The redirection endpoint of the auhorization flow.

Declaration
C#
Copy
public Uri RedirectionEndPoint { get; set; }
Property Value
Type Description
Uri
API Level: 3
View Source

ResponseType

The desired response type from the OAuth authorization end point.

Declaration
C#
Copy
public abstract string ResponseType { get; }
Property Value
Type Description
System.String
API Level: 3
View Source

Scopes

The scope of the access.

Declaration
C#
Copy
public IEnumerable<string> Scopes { get; set; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<System.String>
API Level: 3
View Source

State

The client's state which is maintained between request and response.

Declaration
C#
Copy
public string State { get; set; }
Property Value
Type Description
System.String
API Level: 3
View Source

TokenEndpoint

The access token end point URL.

Declaration
C#
Copy
public Uri TokenEndpoint { get; set; }
Property Value
Type Description
Uri
API Level: 3