1

我正在尝试为我的支付系统实现一个 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.
4

1 回答 1

2

使用csrf_exempt装饰器将视图标记为免于 CSRF 检查

from django.views.decorators.csrf import csrf_exempt

@csrf_exempt
def mollie_webhook(request):
    id = request.POST['id']
    print(id)
    return JsonResponse(data={"response": "Success!"})
于 2022-02-01T10:05:48.017 回答