“CSRF -Token in JS” Code-Antworten

Wie man CSRF -Token in JavaScript bekommt

<input type="hidden" name="csrftoken" value="hgdillksdbgjksdbkvbskb">
Worrisome Wren

CSRF -Token in JS

You are not sending the server generated csrf_token for the POST to verify the validity of the data. Hence the error.

As a part of the data part of the request, you need to send the token

csrfmiddlewaretoken: '{{ csrf_token }}' 
Something like this

var data = {
    url: item.find("#id_url").val(),
    title: item.find("#id_title").val(),
    tags: item.find("#id_tags").val(),
    csrfmiddlewaretoken: '{{ csrf_token }}' 
};

Or you could simply do:

var data = $('form').serialize()
if you want to send the whole form as a dictionary
Frantic Flatworm

Wie man CSRF -Token in JavaScript bekommt

csrftoken = document.mainform.csrftoken.value;
# Do something with the CSRF token, like add dynamic values, like sha256(csrftoken + "dynamicvalue");
document.mainform.csrftoken.value = csrftoken;
Worrisome Wren

CSRF -Token in JS

 <input type="checkbox" class="item-check" name="ssns[]" value="15745253">
Relieved Raven

CSRF -Token in JS

<input type="hidden" name="_token" value="GmUW4QXFvoTn3VlXVbQ90N9UGDxohuC1TTwYMzV2">
Relieved Raven

CSRF -Token in JS

 <input type="checkbox" class="item-check" name="ssns[]" value="15745253">
Relieved Raven

Ähnliche Antworten wie “CSRF -Token in JS”

Fragen ähnlich wie “CSRF -Token in JS”

Weitere verwandte Antworten zu “CSRF -Token in JS” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen