Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CSRF Token in Phonegap using AJAX

I'm developing an app with Phonegap that uses Django back-end. The back-end uses csrf, so I need my Phonegap app to use csrf so it can work with Django.

I've read that you can use csrf via Ajax, but I haven't been able to make it work.

Could you please tell me with an example how can I do this?

like image 532
Sascuash Avatar asked Dec 11 '25 05:12

Sascuash


2 Answers

Extending @Zigs Answer .

You can generate csrf token at server(Django) side using :

from django.middleware.csrf import _get_new_csrf_key as get_new_csrf_key
response.set_cookie("csrftoken", get_new_csrf_key())

Use this csrf token for subsequent POST (ajax) request.

like image 107
Priyank Patel Avatar answered Dec 13 '25 23:12

Priyank Patel


just catch csrf_token in your html page in script tag at a time of document ready by

var csrf = {{ csrf_token }}

and then via ajax pass parameter like in your js file

$.ajax({

     csrfmiddlewaretoken: csrf;
     ..//

});

like image 34
rsudip90 Avatar answered Dec 14 '25 01:12

rsudip90



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!