You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A question, rather than an issue. I have a generic remote repo which is implemented with Apache, mod_oauth2, and Keycloak, with 2FA. This all works (thanks - great work). The .gitconfig is:
However, there's a problem - the .gitconfig contains the client secret. Is there some way I can manually enter the secret once, and leave it out of the config file?
The text was updated successfully, but these errors were encountered:
The Authorization code with PKCE flow, PKCE for short, makes it possible to securely perform the OAuth exchange of client credentials for access tokens on public clients without requiring access to the Client Secret at all. This makes the PKCE flow advantageous for single page JavaScript applications or other client side apps where keeping secrets from the user is a technical impossibility.
In the source of this project, you'll see that gitlab.com has no OAuth client secret
A question, rather than an issue. I have a generic remote repo which is implemented with Apache,
mod_oauth2
, and Keycloak, with 2FA. This all works (thanks - great work). The.gitconfig
is:However, there's a problem - the
.gitconfig
contains the client secret. Is there some way I can manually enter the secret once, and leave it out of the config file?The text was updated successfully, but these errors were encountered: