#bassil-webhook-failure
1 messages ยท Page 1 of 1 (latest)
@shell dove https://stripe.com/docs/webhooks/best-practices#events-and-retries has more details
What it means is that if your endpoint continues failing until November 9 we will disable it. If the issue is already resolved it won't happen
Okay awesome ๐ So will ignore the email
I fixed this issue by making the secret change based on server setting being on debug mode or not in django instead of hardcoding the secret for production/development and hashing out the one not being used
To avoid this in the future
if DEBUG:
STRIPE_SECRET_SIGNING_KEY = 'code here'
else:
STRIPE_SECRET_SIGNING_KEY = 'code here'
nice!
Thank you. Okay Koopajah have a nice day, back to coding for me ๐