On Fri, Jan 21, 2011 at 4:40 AM, scabbage <[email protected]> wrote: > How do I include CSRF token in a curl request then? I use curl for > debugging. Cannot seem to find any info on Google :(
The CSRF token is just a hidden field on your form. When you render your template, the CSRF token will be included on the rendered page. Include that token as part of your post data as you would any other field value. Yours, Russ Magee %-) -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

