Presigned URLs
There are situations where you may need to upload a file client side instead of server side, but doing so might risk exposing an API key. To solve this you can create a presigned upload URL on the server and then pass it to the client for it to be consumed. Creating signed upload URLs can be done with either the Files SDK or the API, and you can designate how long the URL is valid for, how large the file can be, the type of file allowed, or extra metadata like a name and keyvalues.
For a more robust example, check out our guides on Hono and React!
Usage
Setting up a server side API endpoint might look something like this:
Then back on the client side code, you can upload using the signed URL instead of the regular upload endpoint.
If you’re using the SDK you can use the .url()
parameter on any of the upload methods and pass in the signed upload URL there. If you are using the API you can simply make the upload request using the signed URL as the endpoint.
Reference
Below are the availble parameters for presigned URLs
expires
- Type:
number
The number of seconds the signed URL should be valid for
name (Optional)
- Type:
string
Name for the file to be uploaded
mimeTypes (Optional)
- Type:
string[]
Specify allowed file mime types and prevent uploads from files that do not match. Accepts wildcard mime types as well.
maxFileSize (Optional)
- Type:
number
Restrict upload to a specified file size in bytes
groupId (Optional)
- Type:
string
The target groupId the file would be uploaded to
keyvalues (Optional)
- Type:
Record<string, string>
Keyvalue pairs for the uploaded file
date (Optional)
- Type:
number
A UNIX timestamp of the date a URL is signed