Kakao Channel + chatbot ai

ILOV-IT·2025년 1월 14일

from fastapi import FastAPI, Request

app = FastAPI()

@app.post("/kakao/callback")
async def kakao_callback(request: Request):
    body = await request.json()
    # 메시지 처리 로직
    print("카카오 요청:", body)
    return {"status": "ok"}

profile
because we know you'll love it

0개의 댓글