#vrk18
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.
Hi there, yes query params will be removed
no matches found: https://localhost/EventListener/WebhookAction?type=connect
You should avoid using query params in webhook endpoint URL.
Could you please have a look at my previous question which is 23 minutes ago
What's the question?
River said can can use the query parameter to distinguish the difference between the Platform events and Connect events
Can you tell me more about the "no matches found error" ?
Also what prevent you from creating two URLs for direct and connect webhook endpoints?
Sorry When I was doing https://localhost/EventListener/WebhookAction?type=connect on my CLI
I am getting the no matches found error, I am trying to test the local listener for webhook events
I am doing stripe listen --forward-to https://localhost/EventListener/WebhookAction?type=connect on local CLI
Do you have the detailed logs of this "no matches found error"?
NO
This is my question earlier #dev-help message
Sorry That was the wrong link again.
What's the event ID?
evt_3OdmmgHvbngkCFkt1M2g37Wa
The URL that you specified is
https://localhost:7099/EventListener/WebhookAction/type=connect
and your server responded with 404.
I believe the URL that you want to use is
https://localhost:7099/EventListener/WebhookAction?type=connect if you want to make type as a query param
I'd also like to make a correction, yes you can include query parm in a webhook endpoint URL.
When I am trying to do stripe listen --forward-to https://localhost:7099/EventListener/WebhookAction?type=connect on CLI, I am getting the no matches found.
Again, I need more details about this "no matches found" error in order to help you further.
When I run
stripe listen --forward-to 'URL_ENDPOINT_WITH_QUERY_PARAM' command on my machine CLI, I am getting "zsh: no matches found: https://localhost:7099/EventListener/WebhookAction?type=connect"
So this error is the response of running stripe listen --forward-to 'URL_ENDPOINT_WITH_QUERY_PARAM ?
Yes
It is working with quotes, but I didn't use them before for URL_WITHOUT_PARAM
That's because zsh interprets the ? as a wildcard
And previous command doesn't invovle ? character
Good to know, thanks Jack