我正在尝试为我的支付系统实现一个 webhook。我有一个到我的 webhook 视图的路径,这是一个简单的定义,其中打印了提供的 id。
用法是这样的
http://localhost:8000/api/mollie-webhook/?id=ExampleId
小路
# mollie webhook
path('api/mollie-webhook/', mollie_webhook, name='mollie_webhook'),
看法
def mollie_webhook(request):
id = request.POST['id']
print(id)
return JsonResponse(data={"response": "Success!"})
我收到以下错误
CSRF verification failed. Request aborted.