#Kamiyabali-webhook
1 messages · Page 1 of 1 (latest)
did not get any response
Looking at the screenshot you've shared, are you even initialising the Stripe client?
Can you share a Event ID (evt_xxx) you're expecting to receive?
evt_1LeZCiSAvJMUlJgALlqdBQkX
actually , I don't get any response
Are you even initialising the Stripe client?
here is my request code
The IDE screenshot suggests no
I'm confused, you first sent me a webhook handler code and now a function to create a Checkout Session
I'll ask again: Are you even initialising the Stripe client?
No
Then you need to
You're using classes and functions from the Stripe PHP library, you need to include and initialise it in your code
Yes
still not get any response
Hmm, have you definitely installed stripe-php in your project?
Something in your code is not executing as you expect. You must have some errors/logs locally
Yes, if not how can i complete transaction.
and how can I verify manually ?
this did not match
I recommend removing the signing secret verification and trying it without it.
See if the handler can receive and process events that way, then we can add it back
In instances like this, the issue is usually 1 of 2 things:
- Using the wrong
whsec_xxxvalue. - Your code is manipulating the request body/payload before passing it to the
constructEventmethod. That methods requires the raw body.