Search code examples
pythondjangocsrfdjango-csrfcsrf-token

How can I get the csrftoken token in the view directly?


Is there any way to get the csrftoken in my view directly?


Solution

  • I believe you're looking for this:

    django.middleware.csrf.get_token(request)
    

    or

    {% csrf_token %}
    

    Reference: How can I embed django csrf token straight into HTML?