You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pode returns error 400 and not get into the route (Add-PodeRoute -Method * -Path * ...)
Is there a way to process this request?
Note that:
If I send only "limit=1&offset=0" Pode parse the info to $WebEvent.Query.
If I send only "eq(status,active)" Pode basically ignores it witch is fine, I can get it form $WebEvent.Request.Url if I really need to.
But with both I can't get into a route.
Expected Behavior
Don't have a strong opinion if "Query" will be set or not, as long as it's available in $WebEvent.Request.Url and I can process the call it's enough for me.
The text was updated successfully, but these errors were encountered:
Describe the Bug
Hi
I'm trying to mock a server for an API with Pode.
The client send something like this to Pode:
Pode returns error 400 and not get into the route (
Add-PodeRoute -Method * -Path * ...
)Is there a way to process this request?
Note that:
If I send only "limit=1&offset=0" Pode parse the info to
$WebEvent.Query
.If I send only "eq(status,active)" Pode basically ignores it witch is fine, I can get it form
$WebEvent.Request.Url
if I really need to.But with both I can't get into a route.
Expected Behavior
Don't have a strong opinion if "Query" will be set or not, as long as it's available in
$WebEvent.Request.Url
and I can process the call it's enough for me.The text was updated successfully, but these errors were encountered: