From 57f26d2907680c37943c60e7aa9bce76d658574e Mon Sep 17 00:00:00 2001 From: Tyler James Leonhardt Date: Sat, 4 Feb 2023 09:57:24 -0500 Subject: [PATCH] Fixes #173380 (#173428) Fixes #173380 --- extensions/github-authentication/src/githubServer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/github-authentication/src/githubServer.ts b/extensions/github-authentication/src/githubServer.ts index beda567e546..8babd85ab73 100644 --- a/extensions/github-authentication/src/githubServer.ts +++ b/extensions/github-authentication/src/githubServer.ts @@ -15,7 +15,7 @@ import { crypto } from './node/crypto'; import { fetching } from './node/fetch'; const CLIENT_ID = '01ab8ac9400c4e429b23'; -const GITHUB_TOKEN_URL = 'http://localhost:3000/codeExchangeProxyEndpoints/github/login/oauth/access_token'; +const GITHUB_TOKEN_URL = 'https://vscode.dev/codeExchangeProxyEndpoints/github/login/oauth/access_token'; const NETWORK_ERROR = 'network error'; const REDIRECT_URL_STABLE = 'https://vscode.dev/redirect';