#Stilo
1 messages · Page 1 of 1 (latest)
Hi, you can find this on the Dashboard: https://dashboard.stripe.com/test/webhooks > Click on the endpoint and click on 'Reveal' on Signing secret.
You'd first need to set up the Endpoint, https://dashboard.stripe.com/test/webhooks: https://stripe.com/docs/payments/handling-payment-events
You can use the CLI to test your webhook, but if you're trying to set this up, you can read this, https://stripe.com/docs/webhooks
You already set your webhooks but not getting an event? Can you share the request id for this payment so I can look on my end? Here's how you can find a request ID: https://support.stripe.com/questions/finding-the-id-for-an-api-request
I think I'll do later (the webhooks side), now I need to understand why this doesn't work
the client side
it shouldn't do this
What should it not do? Can you add clearn steps on what you did? What you expect? and what you're getting instead?
What is not working?
I mean, on the dashboard I see the payments but it make no sense
because I didn't fill any input
because there's only a "pay now" button
@gentle turtle?
Can you share the payment request id with me? Here's how you can find a request ID: https://support.stripe.com/questions/finding-the-id-for-an-api-request
You're liking creating the Payment Intent when the page is loaded and hence you're seeing this request: https://dashboard.stripe.com/test/logs/req_huCpJn8grdPKmb. There is no payment data and confirmation request for the Payment Intent
So?
that's a problem?
why I can't put the payment informations and the request doesn't start when I press the button?
You can code that on your end, you can delay the Payment Intent creation until later.
You load the page, then your customer fills out the data, then when they click on Submit, the Payment Intent is created.
On your ckeckout.js, you'd need initialize and create the Element: https://stripe.com/docs/payments/quickstart#init-elements-html
and you're mounting the Element? Can you share your client side code with?
The issue is mostly on your client side code.