Is there an option to print the request response without buffering, like the curl --no-buffer option?
My API call is getting a streamed response with lines received over a couple of minutes and I want to print the output to be printed immediately as received so that the used is informed about the progress.
My current workaround is to use a script with curl command, but I would prefer to use this plugin.
Is there an option to print the request response without buffering, like the
curl --no-bufferoption?My API call is getting a streamed response with lines received over a couple of minutes and I want to print the output to be printed immediately as received so that the used is informed about the progress.
My current workaround is to use a script with curl command, but I would prefer to use this plugin.