We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85dc6a4 commit 3c7d643Copy full SHA for 3c7d643
internal/oauthdevice/device_flow.go
@@ -50,10 +50,11 @@ type DeviceAuthResponse struct {
50
}
51
52
type TokenResponse struct {
53
- AccessToken string `json:"access_token"`
54
- TokenType string `json:"token_type"`
55
- ExpiresIn int `json:"expires_in,omitempty"`
56
- Scope string `json:"scope,omitempty"`
+ AccessToken string `json:"access_token"`
+ RefreshToken string `json:"refresh_token,omitempty"`
+ TokenType string `json:"token_type"`
+ ExpiresIn int `json:"expires_in,omitempty"`
57
+ Scope string `json:"scope,omitempty"`
58
59
60
type ErrorResponse struct {
0 commit comments