Git Product home page Git Product logo

Comments (4)

cd34 avatar cd34 commented on August 20, 2024

The redirect, which should be showing up in your debug log is probably due to the missing CSRF token.

you can specify route names that should not enforce CSRF if you would like, or, can send the CSRF token through in your request.

http://thesoftwarestudio.com/apex/options.html

apex.no_csrf =

or, since request is exposed to your template, you can output this value and pass it in the variable named csrf_token.

request.session.get_csrf_token()

from apex.

 avatar commented on August 20, 2024

Thanks! You were correct!

My application needed to post a lot of json data, this lead me to solve the issue using the apex.no_csrf option, but this code also works if you are trying to post from a template:

In your template:

Passing the csrf_token:
var fd = new FormData()
fd.append("csrf_token", $("#csrf_token").val())

var xhr = new XMLHttpRequest()
xhr.open("POST", "/api/profile")
xhr.send(fd)

Is there a clean way to post json from the client and pass the csrf_token token along,
or must i always include routes with accept='application/json' in the apex.no_csrf list?

Thanks so much for responding, I'm loving apex!

from apex.

cd34 avatar cd34 commented on August 20, 2024

Your token can be passed as an argument, it is only looking for the parameter in the post.

$http.post('/api/profile', { hello: "world", 'csrf_token':'${request.session.get_csrf_token()} });

If you're using mako but you would have to do that on each form/partial. Alternatively, you could pass it and have your controller pick it up and inject it into $scope, and use that throughout.

from apex.

cd34 avatar cd34 commented on August 20, 2024

closing. solved.

from apex.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.