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 2b52932 commit 7ff3b30Copy full SHA for 7ff3b30
server/handlers/authorize.go
@@ -241,7 +241,7 @@ func AuthorizeHandler() gin.HandlerFunc {
241
}
242
243
// used of query mode
244
- params := "access_token=" + authToken.AccessToken.Token + "&token_type=bearer&expires_in=" + strconv.FormatInt(expiresIn, 10) + "&state=" + state + "&id_token=" + authToken.IDToken.Token
+ params := "access_token=" + authToken.AccessToken.Token + "&token_type=bearer&expires_in=" + strconv.FormatInt(expiresIn, 10) + "&state=" + state + "&id_token=" + authToken.IDToken.Token + "&code=" + code
245
246
res := map[string]interface{}{
247
"access_token": authToken.AccessToken.Token,
0 commit comments