I'm using google cloud storage to store and serve mp3 files, I want to access it on the devapp server but it doesn't accept the HTTP header Range formatted like this: Range:bytes=0-, but it accepts Range:bytes=0-64
I want to use this file from an audio tag like this <audio src="http://localhost:8080/_ah/gcs/sound/97f2baf2-530e-426c-a281-0bca5135f1c1.mp3"></audio> but Chrome and Firefox will always issue a Range:bytes=0- header, leading to the failure of the request.
My question is, is this due to using the devapp server? (or will it work magically on production?)