submitting a get request in rails
For the error “WARNING: Can’t verify CSRF token authenticity”, add a CSRF token.
= form_tag some_path(@organization), method: :get do
= hidden_field_tag :authenticity_token, form_authenticity_token # this needs to be added!
= submit_tag "View"
= link_to_function 'Export', "Javascript function which posts to another route"
The top-level block contains method: :get which doesn’t auto-add the needed authenticity_token.