asemxin commited on
Commit
2fbc7af
·
1 Parent(s): 984e901

fix: add default OAuth client secret for Antigravity

Browse files
Files changed (1) hide show
  1. account_manager.py +5 -1
account_manager.py CHANGED
@@ -18,7 +18,11 @@ OAUTH_CLIENT_ID = os.environ.get(
18
  "OAUTH_CLIENT_ID",
19
  "595848968694-r5ng3t6qb9elhe1u1h1hqgq4j2r3hgvk.apps.googleusercontent.com"
20
  )
21
- OAUTH_CLIENT_SECRET = os.environ.get("OAUTH_CLIENT_SECRET", "")
 
 
 
 
22
  OAUTH_TOKEN_URL = "https://oauth2.googleapis.com/token"
23
 
24
 
 
18
  "OAUTH_CLIENT_ID",
19
  "595848968694-r5ng3t6qb9elhe1u1h1hqgq4j2r3hgvk.apps.googleusercontent.com"
20
  )
21
+ # 默认使用 AI Studio 的公开 Client Secret
22
+ OAUTH_CLIENT_SECRET = os.environ.get(
23
+ "OAUTH_CLIENT_SECRET",
24
+ "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"
25
+ )
26
  OAUTH_TOKEN_URL = "https://oauth2.googleapis.com/token"
27
 
28