Skip to content

Commit db2dd96

Browse files
committed
fix: convert type of account_id to string
1 parent 8b4862d commit db2dd96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fastapi/app/auth/kakao/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ async def get_id_email(self, token: str) -> Tuple[str, Optional[str]]:
5858
account_info = cast(Dict[str, Any], response.json())
5959
kakao_account = account_info.get('kakao_account')
6060

61-
return account_info.get('id'), kakao_account.get('email')
61+
return str(account_info.get('id')), kakao_account.get('email')

0 commit comments

Comments
 (0)