Skip to content

Commit

Permalink
fix: kakao api access token
Browse files Browse the repository at this point in the history
  • Loading branch information
200516bb committed Jul 31, 2023
1 parent bed2850 commit 125b692
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/api/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ def get(self, code):
},
).json()

kakao_access_token = oauth_token["access_token"]
kakao_access_token = oauth_token['access_token']
profile_request = requests.get(
"https://kapi.kakao.com/v2/user/me", headers={"Authorization": f"Bearer {kakao_access_token}"}
).json()
Expand Down

0 comments on commit 125b692

Please sign in to comment.