Skip to content

Commit

Permalink
fix: user 존재 시 post url 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
yjoonjang committed Mar 31, 2024
1 parent b76a5c5 commit daac984
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion accounts/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def kakao_callback(request):
# 유저가 존재하는 경우
logger.warning(f"user: {user}")
logger.warning("유저 존재")
accept = requests.post("http://localhost:8000/accounts/kakao/login/finish/", data=data)
accept = requests.post("https://api.resumai.kr/accounts/kakao/login/finish/", data=data)
logger.warning(f"accept: {accept}")
logger.warning(f"accept.reason: {accept.reason}")
logger.warning(f"accept.history: {accept.history}")
Expand Down

0 comments on commit daac984

Please sign in to comment.