medical-kiban commited on
Commit
4ea4e80
·
1 Parent(s): ad7ef36

回答ロジック

Browse files
Files changed (1) hide show
  1. app/app.py +1 -1
app/app.py CHANGED
@@ -60,7 +60,7 @@ async def handle_chatwork_webhook(
60
  # 웹훅 페이로드에서 필요한 정보 추출
61
  event = data.get("webhook_event", {})
62
  room_id = event.get("room_id")
63
- from_account_id = event.get("from_account_id")
64
  message_id = event.get("message_id")
65
 
66
  if room_id and from_account_id and message_id:
 
60
  # 웹훅 페이로드에서 필요한 정보 추출
61
  event = data.get("webhook_event", {})
62
  room_id = event.get("room_id")
63
+ from_account_id = event.get("account_id")
64
  message_id = event.get("message_id")
65
 
66
  if room_id and from_account_id and message_id: