Django CSRF 验证失败。 Webhook支付系统
Django CSRF verification failed. Webhook payment system
我正在尝试为我的支付系统实施网络钩子。我有一个指向我的 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.
使用 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!"})
我正在尝试为我的支付系统实施网络钩子。我有一个指向我的 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.
使用 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!"})