Get a pre-signed URL for downloading a file
Optional
import { getSignedUrl } from "@cpod/sdk";const { url, expiresAt } = await getSignedUrl("file-123", { expiresIn: 3600, // 1 hour contentDisposition: "attachment", filename: "report.pdf"});// Use the URL to downloadwindow.open(url); Copy
import { getSignedUrl } from "@cpod/sdk";const { url, expiresAt } = await getSignedUrl("file-123", { expiresIn: 3600, // 1 hour contentDisposition: "attachment", filename: "report.pdf"});// Use the URL to downloadwindow.open(url);
Get a pre-signed URL for downloading a file