We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd13f8a commit 28c6974Copy full SHA for 28c6974
1 file changed
jwt/token.go
@@ -29,8 +29,8 @@ type accessDetails struct {
29
}
30
31
type AuthToken struct {
32
- AccessToken string
33
- RefreshToken string
+ AccessToken string `json:"access_token"`
+ RefreshToken string `json:"refresh_token"`
34
35
36
func (t Token) createToken() (*tokenDetails, error) {
0 commit comments