Doc calling out GitHub OAuth client secret behavior (#242210)

This commit is contained in:
Tyler James Leonhardt
2025-02-27 09:47:41 -08:00
committed by GitHub
parent 5b8244c3c6
commit 9ca1204521

View File

@@ -10,6 +10,10 @@ export interface IConfig {
}
// For easy access to mixin client ID and secret
//
// NOTE: GitHub client secrets cannot be secured when running in a native client so in other words, the client secret is
// not really a secret... so we allow the client secret in code. It is brought in before we publish VS Code. Reference:
// https://docs.github.com/en/apps/oauth-apps/building-oauth-apps/best-practices-for-creating-an-oauth-app#client-secrets
export const Config: IConfig = {
gitHubClientId: '01ab8ac9400c4e429b23'
};