Does anyone know how to send a field with brackets by a url encoded form using flurl?
Example: I want to send the foo[bar] field with the "foo" value like this
var response = await "https://server/request"
.WithHeader("Header1", "headerValue")
.PostUrlEncodedAsync(new
{
foo[bar] = "foo"
})