#codingwisely

1 messages ยท Page 1 of 1 (latest)

cold ingotBOT
hasty notch
#

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.

wary oriole
#

i understadn that part too ๐Ÿ™‚

hasty notch
#

So you'll need to check your server logs and configuration to understand the issue

wary oriole
#

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?

hasty notch
#

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/webhooks

by that i mean old IP address?
You can find all IP used by Stripe webhooks here: https://stripe.com/docs/ips#webhook-notifications

wary oriole
#

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?

hasty notch
#

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.

wary oriole
#

thank you sir ๐Ÿ™‚ i think i understand now and i am on it to fix it, much appreciate your pointers