I'm trying to stream a file from a remote URL directly to user without downloading it in my server.
I tried using the code someone recommended here:
Stream file from remote url to Django view response
But i can't find a way to add resume support. I tried getting HTTP_RANGE and add a range header to requests.get but it doesn't work.
Is there any way to add resume support or even any other way to serve file from remote URL with resume support?