feat: OAuth 제공자 추출 및 로그인 테스트 개선

This commit is contained in:
암냥 2025-06-28 11:51:19 +09:00
commit 353e98e28c
4 changed files with 27 additions and 24 deletions

View file

@ -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}")