Already setup with a global CDN
You can upload files and receive a link that uses our CDN to make sure content is close to your users.
Upload a file. Maximum file size depends on your plan.
HTTP request:
POST /storage/upload
Format: multipart/form-data
Example:
document.querySelector('#file').addEventListener('change', event => {
handleFileUpload(event);
});
const handleFileUpload = (event) => {
const files = event.target.files;
const formData = new FormData();
formData.append('file', files[0]);
fetch("https://ca1.staticbackend.com/storage/upload", {
headers: {
"SB-PUBLIC-KEY": "your-public-key",
"Authorization": "Bearer user's JWT"
},
method: "POST",
body: formData
})
.then(response => response.json())
.then(fileURL => {
console.log(fileURL);
})
.catch(error => {
console.error(error);
});
}
file, _, err := r.FormFile("uploaded-file")
result, err := backend.StoreFile(token, file)
fmt.Println("ID", result.ID, "URL", result.URL)
n/a
Response:
{
"id": "unique id to store for later deletion",
"url": "https://cdn.staticbackend.com/{id}/{repo}/{fileid}.ext"
Delete a file
HTTP request:
GET /sudostorage/delete?id=${id}
Querystring parameters:
name | type | description |
---|---|---|
id | string |
Id of the file to delete |
Example:
const res = await bkn.deleteFile(rootToken, fileId);
if err := backend.DeleteFile(rootToken, fileID); err != nil {
//...
}
curl -H "Content-Type: application/json" \
-H "SB-PUBLIC-KEY: your-pub-key" \
-H "Authorization: Bearer root-token" \
https://na1.staticbackend.com/sudostorage/delete?id=unique_id_here
Response:
true
© 2023 Focus Centric Inc. All rights reserved.