possible fix for auth refresh

This commit is contained in:
Game_Time
2025-11-19 15:19:46 +05:00
parent 13b1dddf75
commit b5bb0eaa8e

View File

@@ -293,7 +293,7 @@ def _refresh_chatgpt_tokens(refresh_token: str, client_id: str) -> Optional[Dict
"grant_type": "refresh_token",
"refresh_token": refresh_token,
"client_id": client_id,
"scope": "openid profile email",
"scope": "openid profile email offline_access",
}
try: