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.
account_id
1 parent 8b4862d commit db2dd96Copy full SHA for db2dd96
fastapi/app/auth/kakao/client.py
@@ -58,4 +58,4 @@ async def get_id_email(self, token: str) -> Tuple[str, Optional[str]]:
58
account_info = cast(Dict[str, Any], response.json())
59
kakao_account = account_info.get('kakao_account')
60
61
- return account_info.get('id'), kakao_account.get('email')
+ return str(account_info.get('id')), kakao_account.get('email')
0 commit comments