gpt4 book ai didi

python - Django CSRF 验证失败。网络钩子(Hook)支付系统

转载 作者:行者123 更新时间:2023-12-02 18:20:35 25 4
gpt4 key购买 nike

我正在尝试为我的支付系统实现一个 webhook。我有一个通往 webhook View 的路径,这是一个简单的定义,其中打印了提供的 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.

最佳答案

使用csrf_exempt装饰器将 View 标记为免于 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!"})

关于python - Django CSRF 验证失败。网络钩子(Hook)支付系统,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70938497/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com