Table of Contents

Class StravaAuthorizationOptions

Namespace
Tudormobile.Strava
Assembly
Tudormobile.Strava.dll

Represents the configuration options required for authorizing access to the Strava API.

public class StravaAuthorizationOptions
Inheritance
StravaAuthorizationOptions
Derived
Inherited Members

Remarks

This class encapsulates the credentials and tokens needed to authenticate and authorize requests to Strava on behalf of a client application. The values are typically provided by the Strava developer portal and should be kept secure. Use these options when configuring services that interact with the Strava API.

Properties

AccessToken

Client Access Token.

public string AccessToken { get; init; }

Property Value

string

ClientId

Client Identifier.

public string ClientId { get; init; }

Property Value

string

ClientSecret

Client Secret.

public string ClientSecret { get; init; }

Property Value

string

RefreshToken

Client Refresh Token.

public string RefreshToken { get; init; }

Property Value

string