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 05dccca commit 1bf361fCopy full SHA for 1bf361f
VERSION
@@ -1 +1 @@
1
-v0.6.1
+v0.6.2
sdk/login.go
@@ -72,6 +72,9 @@ func (client *Client) redeemCodeForAccessToken(code string) (*LoginRedeemCodeRes
72
return nil, err
73
}
74
if status != http.StatusOK {
75
+ if status == http.StatusUnauthorized {
76
+ return nil, errors.New("verify you're using the client secret's value (not ID) and the API permissions are set correctly")
77
+ }
78
return nil, client.handleResponseError(status, resp)
79
80
var json LoginRedeemCodeResponse
version.go
@@ -1,3 +1,3 @@
package main
2
3
-var AppVersion = "v0.6.1"
+var AppVersion = "v0.6.2"
0 commit comments