0
votes

I've been using the Django admin panel for my project the entire time and suddenly after I cleaned my cookies it just won't work again it keep sending me this error:

Forbidden (403) CSRF verification failed. Request aborted.

Help: Reason given for failure:

CSRF token missing or incorrect.
1
Post traceback.dan-klasson

1 Answers

1
votes

I am answering this question from the very less information available.

When you delete your cookies, the session-key stored on your browser side will be deleted. This way any API calls made after that will result in 403 error. Just to make sure this is correct, you can open your incognito tab in google chrome and try the same request after logging in.