I am using the Jquery FullCalendar in an app. When I click on a day I post
an ajax request. I keep getting the 422 response as the authenticity_token
is invalid. I put the skip_before_filter to not require it but I keep
getting the 422 error.
skip_before_filter :verify_authenticity_token
I found a post on how to send the token along but that has not fixed the
issue.
dayClick: function(event, jsEvent, view){
jQuery.ajax({
type: ''post'',
url: "/days/new",
dataType: ''script''
});
},
--
You received this message because you are subscribed to the Google Groups
"Ruby on Rails: Talk" group.
To post to this group, send email to
rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en.