Generate presigned download URL for file retrieval Used by distribution engine to read video files
Object key in R2 bucket
Presigned GET URL that expires in 1 hour
const url = await getObjectUrl("users/123/video.mp4");// Distribution engine can fetch from this URLconst response = await fetch(url); Copy
const url = await getObjectUrl("users/123/video.mp4");// Distribution engine can fetch from this URLconst response = await fetch(url);
Generate presigned download URL for file retrieval Used by distribution engine to read video files