#GoddessKim
1 messages · Page 1 of 1 (latest)
Could you share the event ID (evt_xxx)?
"evt_1Md8LwJQCjtKymOxqZhmwkUj"
Thanks for sharing. As per checking, 405 was returned from your server to Stripe
405 Method Not Allowed response status code indicates that the server knows the request method, but the target resource doesn't support this method: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/405
You likely want to check why your server doesn't support this specific webhook endpoint
As I mentioned it works as expected if I run locally. So I don't think that's the issue. Anything else that comes to mind?
If my server didn't suppor the method it wouldn't work locally either.
In your local endpoint, you forward it to http://0.0.0.0:8000/stripe_webhooks
However, the one you set in the dashboard is just simply your root server endpoint and doesn't have path (/stripe_webhooks)
You likely miss to add the path to your webhook endpoint set in the dashboard
For example, it should look something like https://your-server-url/stripe_webhooks
That's awesome. Thank you so much. Didn't realize that's how it worked.