#sbusch
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- sbusch, 2 days ago, 24 messages
hi there!
looks like your server is returning a 500 error
so you need to check your server logs to see what exactly is the issue
so i don't see the response in the dashboard?
and just to make sure. The way i took with the aspnet mvc option from github is still working?
The strange thing is. I don't get any error in my application at all.
you should be able to see all events in the dashboard here: https://dashboard.stripe.com/test/events
this eventlog say that everything is ok.
i think he sends the request to my live website and not forward it correctly to my local machine.
can you share the event ID (evt_xxx)?
possible, the error you shared is only about the CLI. the live website is unrelated to this.
evt_3OQ73YHI9BibKNir1B44En67
Ah inside the event there ar more information.
There i see the 500 error
it says "The request was aborted: Could not create SSL/TLS secure channel." Which basicly means https. This is correct i don't have https on my local machine
tha's the reason i used
thanks! give me a few minutes to look into this.
ok thank you.
can you share the full stripe command you ran?
stripe listen --skip-verify --forward-to local.evencoo.ch/api/webhooks/incoming/stripe/
in the documentation in found this
Maybe i missunderstand it. skip verify doesn't mean that i can use http it just not check if the certificate from a https is valid?
so i could set up a self signed certificate and try it again
on my machine when I do stripe listen -f http://localhost:3000/webhooks (note that there's no httpS), it works fine
can you try without --skip-verify?
ok give me a sec
i am getting the same error for this event id
evt_3OQ7PCHI9BibKNir0eTYTUwl
And just to be sure. This solution in found here is still working? https://github.com/aspnet/AspNetWebHooks/tree/main/samples/StripeReceiver
Libraries to create and consume web hooks on ASP.NET 4.x (Due to other priorities this project is currently in maintenance mode only. There are no planned releases at this time. No new features are...
Hey! Taking over for my colleague. Let me catch up.
ok thanks.
Why are you sending events to your webhook endpoint via stripe cli command ?
You should register your domain simply in your Stripe test dashboard for your dev/tests
Stripe cli is for local dev mainly
yes i want to test my local environment
We don't own that, you probably should reach out to the maintainer of that github repository
According to this command
stripe listen --skip-verify --forward-to local.evencoo.ch/api/webhooks/incoming/stripe/
It doesn't seem to be local endpoint
You should forward to a localhost endpoint
ok i see. Do you have any example to set up the webhook for aspnet mvc? I found only some for .net core.
Maybe i made something wrong with the testing but local.evencoo.ch is my local dev computer.
how i am suposed to test my local system when not like this?
No, you porbably need to searhc in the community or reach out to that repository maintainer
ok i will contact them
And this is a complete guide for implementing Checkout with webhooks:
https://stripe.com/docs/payments/checkout/fulfill-orders
You need to adapt it for .NET MVC
yeah i tried the provided solution from the guthub with the microsoft dll's and i setup like the documentation. My only problem no is, that i get a 500 error in the logs in the dashboard, which says "The request was aborted: Could not create SSL/TLS secure channel."
that i get a 500 error in the logs in the dashboard, which says "The request was aborted: Could not create SSL/TLS secure channel."
Can you share the object Id showing this ? or a screenshot ?
Yes thanks.
This seems to be related to your endpoint/webserver
It's not related to Stripe APIs/delivery
You probably need to reach out to someone who knows/understand your network/certs
yeah this is the problem. I know this error only from https websites and not from http sites. Localy i am running http so this cert issue makes not much sense. So i asume the call goes wrong to https or something like this.
But yeah i will set up my local environment with https and try again. If this should not work i create a normal API Handler to get the webhook calls which should work as well instead of this custom github webhook handler
Yes that makes sense for me.
ok thank you for your help. I will test this things out.