Invalid anti-forgery token
问题 I'm getting an " Invalid anti-forgery token " when I try using POST method in a Clojure Webapp project I created using Compojure template. I researched, and Ring middle ware creates CSRF (cross site request forms) tokens to authenticated requests coming from other sites (to use someone else's credentials who has already logged in and access pages not allowed to access). These tokens are default, and we need to use ring.middleware 's wrap-params around our WebApp. Couldn't get anywhere much.