David Kimura PRO said about 6 years ago on More on Stripe and Webhooks :
In your `application_controller.rb`, what does your `protect_from_forgery` look like? Try changing it to `:exception`. ```ruby class ApplicationController < ActionController::Base protect_from_forgery with: :exception end ```