Azure / Azure-Functions

1.1k stars 189 forks source link

Isolated process HttpTriggers routes with UrlEncoded values fail #2506

Open EnenDaveyBoy opened 1 week ago

EnenDaveyBoy commented 1 week ago

in c# v4 isolated net8 lts

If i have a route set

Route = /{version}/{culture}/foo/{origin}

and the origin is https://localhost:3000 and encoded to https%3a%2f%2flocalhost%3a3000

this half works locally, as in the function hits the endpoint however the %3a get decoded

however if you upload it to a live azure function it fails the hit the endpoint, although double encoding does work

stack overflow showing issue