Can you post the `webhooks_controller.rb`?
If you are overriding the Webhook controller like I showed in the episode, it should be `skip_before_action`.
```ruby
class WebhooksController < StripeEvent::WebhookController
skip_before_action :verify_authenticity_token
end
```