mirror of
https://github.com/j93es/browser-use-oauth.git
synced 2026-06-13 18:36:44 +09:00
[ADD] 재시도 큐 시스템 추가 및 관련 함수 구현
This commit is contained in:
parent
686333e75c
commit
18a575a8af
4 changed files with 234 additions and 28 deletions
|
|
@ -2,5 +2,5 @@ from pydantic import BaseModel
|
|||
|
||||
class model(BaseModel):
|
||||
msg: str | None = None
|
||||
status: str | None = None # "success", "mfa_required", "google_blocked", "sso_not_found", "login_page_not_found", "invalid_credentials"
|
||||
status: str | None = None # "success", "mfa_required", "blocked", "sso_not_found", "login_page_not_found", "invalid_credentials"
|
||||
final_url: str | None = None
|
||||
|
|
|
|||
|
|
@ -103,7 +103,7 @@ Return the result in the following format only:
|
|||
```json
|
||||
{{
|
||||
"msg": "Google login completed",
|
||||
"status": "success" | "already_logged_in" | "mfa_required" | "captcha_triggered" | "window_blocked" | "idpw_required" | "google_blocked" | "sso_not_found" | "login_page_not_found",
|
||||
"status": "success" | "already_logged_in" | "mfa_required" | "window_blocked" | "idpw_required" | "blocked" | "sso_not_found" | "login_page_not_found",
|
||||
"final_url": "<url_after_login_redirect or empty string>"
|
||||
}}
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue