diff --git a/pkg/client/client.go b/pkg/client/client.go index 9597ec8..ef8bede 100644 --- a/pkg/client/client.go +++ b/pkg/client/client.go @@ -59,7 +59,7 @@ type QueryError struct { } func GetAuthorizationURL(scopes []string) string { - return fmt.Sprintf("%s?client_id=%s&redirect_uri=%s&response_type=token+id_token&scope=%s", + return fmt.Sprintf("%s?client_id=%s&redirect_uri=%s&response_type=token+id_token&scope=%s&silent=1", BaseAuthorizationURL, OauthClientID, url.QueryEscape(RedirectURL), url.QueryEscape(strings.Join(scopes, " "))) }