Is it possible to stream videos with R2?
Is it possible to stream videos with R2?
put causes this errorNoSuchKey: The specified key does not exist. does this mean that I provided the wrong access key?


let reader = request.body.getReader()
console.log({reader})
let pending = true;
while (pending) {
let foo = await reader.read();
console.log(foo)
if (foo.done) {
pending = false
}
}
reader.releaseLock()
await env.EXTRACTOR_BINDING.put(key, request.body);
return new Response(`Put ${key} successfully! with count of ${count}`);