Получение данных из формы tilda на Django

Выдает ошибку у Webhook. Куда я должен вставить CSRF токен?

urls.py

path('tilda_lead/', views.Get_tilda_lead.as_view(), name='home'),

views.py

class Get_tilda_lead(View):
    def post(self, lead):
       return 'test'

Ошибка у tilda

[403] Access denied: HTTP/2 403 server: nginx/1.26.2 date: Thu, 26 Dec 2024 13:18:12 GMT content-type: text/html; charset=utf-8 content-length: 2855 x-frame-options: DENY x- content-type-options: nosniff referrer-policy: same-origin cross-origin-opener-policy: same- origin 403 Forbidden html * { padding:0; margin:0; } body { padding:10px 20px; } body * { padding:0; } body { font-family: sans-serif; background:#eee; color:#000; } body>div { border-bottom:1px solid #ddd; } h1 { font-weight:normal; margin-bottom:.4em; } h1 font-size:60%; color:#666; font-weight:normal; } #info { background:#f6f6f6; } #info ul { margin: 0.5em 4em; } #info p, #summary p { padding-top: 10px; } #summary { background: #ffc; } #explanation { background:#eee; border-bottom: 0px none; } Forbidden (403) CSRF verification failed. Request aborted. You are seeing this message because this site requires a CSRF cookie when submitting forms. This cookie is required for security reasons, to ensure that your browser is not being hijacked by third parties. If you have configured your browser to disable cookies, please re-enable them, at least for this site, or for "same-origin" requests. Help Reason given for failure: CSRF cookie not set. In general, this can occur when there is a genuine Cross Site Request Forgery, or when Django's CSRF mechanism has not been used correctly. For POST forms, you need to ensure: Your browser is accepting cookies. The view function passes a request to the template's render method. In the template, there is a {% csrf_token %} template tag inside each POST form that targets an internal URL. If you are not using
CsrfViewMiddleware, then you must use csrf_protect on any views that use the csrf_token template tag, as well as those that accept the POST data. The form has a valid CSRF token. After logging in in another browser tab or hitting the back button after a login, you may need to reload the page with the form, because the token is rotated after a login. You're seeing the help section of this page because you have DEBUG = True in your Django settings file. Change that to False, and only the initial error message will be displayed. You can customize this page using the CSRF FAILURE_VIEW setting.

введите сюда описание изображения

Вернуться на верх