#codingwisely
1 messages ยท Page 1 of 1 (latest)
Hi there!
The HTTP 403 Forbidden response status code indicates that the server understands the request but refuses to authorize it.
So it looks like Stripe tried to send your server an event, but you server blcoked it.
i understadn that part too ๐
So you'll need to check your server logs and configuration to understand the issue
thank you @soma. However, as i mention in description, i am getting stripe response when creating subscrition and i save it in DB so i know that my endpoint works.
is it there something in stripe that stripe is trying to send webhook to old server> by that i mean old IP address? or that trying to send to another, previous webhook i had there and removed it?
thank you @soma. However, as i mention in description, i am getting stripe response when creating subscrition and i save it in DB so i know that my endpoint works.
If you are getting emails from Stripe, then at least some events are returning an error. You can check your webhook events here: https://dashboard.stripe.com/test/webhooksby that i mean old IP address?
You can find all IP used by Stripe webhooks here: https://stripe.com/docs/ips#webhook-notifications
Thank you @hasty notch .
So i dont need all of those?
i mean , honestly i dont konw what i need, so i check in all of them
๐
but why is Stripe trying to send me event like balance.available? Is that something automatically happens?
That's completely up to you! When you create your webhook endpoint, you decide which webhook event you need for your integration.
Usually less than 10 events are enough.
Here you listen to all 194 events.
thank you sir ๐ i think i understand now and i am on it to fix it, much appreciate your pointers