webhooksite / webhook.site

⚓️ Easily test HTTP webhooks with this handy tool that displays requests instantly.
https://webhook.site
Other
5.32k stars 416 forks source link

Query String Parameters not working #118

Closed andrewidqa closed 2 years ago

andrewidqa commented 2 years ago

Using the open source version, I am not able to use a few of the important query string parameters such as sorting, date_from, and date_to. Is this expected?

https://docs.webhook.site/api/tokens.html#query-string-parameters_1

For example: http://base_url/token/token/requests?sorting=oldest&date_to=2021-03-16 21:53:55 has no affect on the response of the request

Note: per_page and page works as expected

fredsted commented 2 years ago

Yep, that's correct, it's not supported in the OSS version. It could be possible, but due to the Redis data storage mechanism it gets harder to do it with a large amount of data.

andrewidqa commented 2 years ago

Thanks for the quick response!