azure-functions-java-worker icon indicating copy to clipboard operation
azure-functions-java-worker copied to clipboard

HttpRequestMessage should support path parameters

Open markusgulden opened this issue 6 years ago • 2 comments

Currently, HttpRequestMessage only supports query parameters and headers, but no path parameters. When I run a function locally using Azure Functions Core Tools, the implementing HttpRequestMessageImpl does so, however, I cannot access it due to the missing method in HttpRequestMessage.

In my opinion, path parameters should be a must in a modern HTTP supporting environment.

markusgulden avatar Mar 17 '19 14:03 markusgulden

We will look into it. Feel free to submit a PR in the azure-functions-java-worker repo.

kulkarnisonia16 avatar Sep 25 '19 17:09 kulkarnisonia16

@kulkarnisonia16 I guess we only need to introduce an additional field in the HttpRequestMessageImpl to hold path variables and add accessor methods.

Is my understanding correct and is this sufficient to close this issue?

swayamraina avatar May 27 '20 19:05 swayamraina