Is it a bug? #3094
-
|
I am doing |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
Hi @DmitryHudrich, you can see what's going with $ hurl main.hurlEvery requests of If you want to see response on every request, you can:
# Get home:
GET https://pokeapi.co/api/v2/pokemon/ditto
[Options]
output: -
GET https://pokeapi.co/api/v2/ability/battle-armor
|
Beta Was this translation helpful? Give feedback.
-
|
thanks for you answer! |
Beta Was this translation helpful? Give feedback.
Hi @DmitryHudrich, you can see what's going with
--verbose. Usually when your command is:Every requests of
main.hurlare executed but only the last response of the file is outputed on standard output.If you want to see response on every request, you can:
--very-verbose: each response will be logged on standard error[Options]section to output a particular response:output: -will print the request response on standard ouputoutput: myfile.binwill save the request response on the filemyfile.bin