azure-functions-java-worker
azure-functions-java-worker copied to clipboard
HttpRequestMessage should support path parameters
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.
We will look into it. Feel free to submit a PR in the azure-functions-java-worker repo.
@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?