Relative Content

Tag Archive for javascriptazure-durable-functions

Azure Durable Functions v4 HTTP Trigger Request Object Different from v3

When using Azure Durable Functions v3, the HTTP Trigger request object would already be pre-filled with the input field with headers, method, and url. There is also a body field. However, when switching to v4, the input field is blank (besides the values I myself put in there) and there is no body field. Because of this, I cannot use the data that is in the body field or values that would be in the header.