-
-
Notifications
You must be signed in to change notification settings - Fork 383
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[524] migrate garmin authentication to oauth (#531)
* [524] migrate garmin authentication to oauth * started stubbing things out * stubbing out more of the flow * good progress * rough draft working :) * happy path is working for Console app * mfa not working :( * fix compile error * polish * update release notes
- Loading branch information
1 parent
daec177
commit 1203744
Showing
10 changed files
with
246 additions
and
355 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
namespace Common.Stateful; | ||
|
||
public record OAuth2Token | ||
{ | ||
public string Scope { get; set; } | ||
public string Jti { get; set; } | ||
public string Access_Token { get; set; } | ||
public string Token_Type { get; set; } | ||
public string Refresh_Token { get; set; } | ||
public int Expires_In { get; set; } | ||
public int Refresh_Token_Expires_In { get; set; } | ||
} |
Oops, something went wrong.