We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d655d1 commit 3bed88bCopy full SHA for 3bed88b
backend/onyx/auth/unified_oauth_callback.py
@@ -369,12 +369,14 @@ async def get_google_user_info(access_token: str) -> dict:
369
return response.json()
370
371
async def get_microsoft_user_info(access_token: str) -> dict:
372
+ logger.info(f"accesssssssssssssssssssss{access_token}")
373
async with httpx.AsyncClient() as client:
374
response = await client.get(
375
"https://graph.microsoft.com/v1.0/me",
376
headers={"Authorization": f"Bearer {access_token}"}
377
)
378
response.raise_for_status()
379
+ logger.info(f"response:{response.json()}")
380
381
382
def get_unified_oauth_callback_router(
0 commit comments