Hi, I have been experimenting with dropbox api on my PHP project and everything is working fine, until I try download bigger folders (cca 1GB). The downloadZip method from SDK is returning a huge body, which cannot be printed (due to memory limit), so I have used fpassthru and succesfully downloaded zip as client, but there is a still huge amount of time consumed by the act of server downloading the response, which brings me to my question.
Is there a possibility in node js or php to start downloading file while script fetches data from dropbox?
Basically I would to start downloading instantly, but I am not even sure if it is possible.
I am also open to other solutions