#Abstraction
1 messages · Page 1 of 1 (latest)
Hi Orakaro!
Hi, when you see the events in your Dashboard what does it say?
The webhook screen looks like this. The error message is nonexistent.
I would be happy with a solution that merely allowed me to call something like this:
import requests
requests.post("https://omnilabs.ai/webhook", json={}, verify=False)
That was triggered by this stripe purchase.
I'm not attached to the webhooks api either, but I need to get a number incremented in our database when a stripe purchase is made through some means.
Yeah it looks like Stripe sent request to your endpoint but never got a response and with some SSL error
Sorry but the endpoint is on your owned setup and you want to make sure it could return 200 to a request
ie. you may want to test it with curl
When verify is false, it returns 200.
When verify is not false, it returns this SSL error.
The issue is that the site is running on https successfully. (https://omnilabs.ai)
Results of the CURL test: