Currently with httpx when -sr flag is used, httpx store the final response data into a file, sometimes it also requires storing response data of intermediate redirects data as well and that is not possible as of now.
Suggested addition:-
When follow-redirects flag is used, httpx should save all the chain data into the same file.
Using the flag -store-chain an additional new file named domain.port.chain.txt gets created in the store folder containing the whole chain (requests + responses)
Currently with
httpx
when-sr
flag is used, httpx store the final response data into a file, sometimes it also requires storing response data of intermediate redirects data as well and that is not possible as of now.Suggested addition:-
When
follow-redirects
flag is used, httpx should save all the chain data into the same file.