You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value.
15
+
/// </summary>
16
+
[JsonProperty("access_token")]
17
+
publicstring?AccessToken{get;set;}
18
+
19
+
/// <summary>
20
+
/// The number of seconds until the token expires (since it was issued). Returned when a login is confirmed.
21
+
/// </summary>
22
+
[JsonProperty("expires_in")]
23
+
publiclongExpiresIn{get;set;}
24
+
25
+
/// <summary>
26
+
/// The oauth provider token. If present, this can be used to make external API requests to the oauth provider used.
27
+
/// </summary>
28
+
[JsonProperty("provider_token")]
29
+
publicstring?ProviderToken{get;set;}
30
+
31
+
/// <summary>
32
+
/// The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.
33
+
/// Not all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token.
34
+
/// </summary>
35
+
[JsonProperty("provider_refresh_token")]
36
+
publicstring?ProviderRefreshToken{get;set;}
37
+
38
+
/// <summary>
39
+
/// A one-time used refresh token that never expires.
0 commit comments