mirror of
https://github.com/j93es/browser-use-oauth.git
synced 2026-06-04 09:31:51 +09:00
feat: OAuth 제공자 추출 및 로그인 테스트 개선
This commit is contained in:
parent
20601cec76
commit
353e98e28c
4 changed files with 27 additions and 24 deletions
|
|
@ -116,7 +116,8 @@ async def extract_oauth_list(url: str):
|
|||
|
||||
try:
|
||||
data = json.loads(final_result)
|
||||
oauth_providers = data.get("oauth_providers", [])
|
||||
print(final_result)
|
||||
oauth_providers = data.get("sso_list", [])
|
||||
if not oauth_providers:
|
||||
print("❌ OAuth 제공자가 없습니다.")
|
||||
logger(f"❌ {url} - OAuth 제공자 없음: {final_result}")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue