#Abstraction

1 messages · Page 1 of 1 (latest)

willow frostBOT
timid idol
#

Hi Orakaro!

bright shell
#

Hi, when you see the events in your Dashboard what does it say?

timid idol
#

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.

bright shell
#

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

timid idol
#

When verify is false, it returns 200.

#

When verify is not false, it returns this SSL error.

#

Results of the CURL test:

bright shell
#

Yep the SSL is the part

#

--insecure is just bypassing it