Skip to content

Commit 76089d2

Browse files
committed
change client id
1 parent 0fcd102 commit 76089d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

codeflash/code_utils/oauth_handler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ def exchange_code_for_token(self, code: str, code_verifier: str, redirect_uri: s
630630
"code": code,
631631
"code_verifier": code_verifier,
632632
"redirect_uri": redirect_uri,
633-
"client_id": "cf_vscode_app",
633+
"client_id": "cf-cli-app",
634634
}
635635

636636
try:
@@ -680,7 +680,7 @@ def perform_oauth_signin() -> str | None:
680680
auth_url = (
681681
f"{get_cfapi_base_urls().cfwebapp_base_url}/codeflash/auth?"
682682
f"response_type=code"
683-
f"&client_id=cf_vscode_app"
683+
f"&client_id=cf-cli-app"
684684
f"&redirect_uri={urllib.parse.quote(redirect_uri)}"
685685
f"&code_challenge={code_challenge}"
686686
f"&code_challenge_method=sha256"

0 commit comments

Comments
 (0)