What is Transfer-Encoding?
Transfer-Encoding is an HTTP header that specifies the form of encoding used to safely transfer the payload body to the client. In scraping, it almost always means chunked, where the server sends data in a series of sized blocks rather than computing a final Content-Length. If your HTTP client doesn't handle chunked boundaries correctly, your pipeline will silently truncate JSON payloads or hang indefinitely waiting for a termination frame.