From da6cb755773e30547d33e3a7051b199ea2b568bd Mon Sep 17 00:00:00 2001 From: Thanatat Tamtan Date: Sun, 21 Jun 2026 08:46:00 +0700 Subject: [PATCH 1/2] storage/dropbox: the project param is the project sid The upload param table called project a "Project ID"; the curl and Go examples already use a sid (acme). Describe it as the project sid to match how the service resolves it. Co-Authored-By: Claude Opus 4.8 (1M context) Claude-Session: https://claude.ai/code/session_01N9FhPEapaKr4VugQBEdisj --- content/storage/dropbox.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/storage/dropbox.md b/content/storage/dropbox.md index 44d46f3..c80798d 100644 --- a/content/storage/dropbox.md +++ b/content/storage/dropbox.md @@ -59,7 +59,7 @@ curl -fsS -X POST \ | Query param | | Description | |---|---|---| -| `project` | required | Project ID the upload is authorized and billed against | +| `project` | required | Project sid (the stable slug, e.g. `acme`) the upload is authorized and billed against | | `ttl` | optional | Lifetime in days, 1–7 (default 1) | | `filename` | optional | Name recorded in `Content-Disposition` for the download | From 2a94d60065412629818815118a0fbca9062509f8 Mon Sep 17 00:00:00 2001 From: Thanatat Tamtan Date: Sun, 21 Jun 2026 08:53:54 +0700 Subject: [PATCH 2/2] storage/dropbox: project param accepts a sid or numeric ID Co-Authored-By: Claude Opus 4.8 (1M context) Claude-Session: https://claude.ai/code/session_01N9FhPEapaKr4VugQBEdisj --- content/storage/dropbox.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/storage/dropbox.md b/content/storage/dropbox.md index c80798d..476a00d 100644 --- a/content/storage/dropbox.md +++ b/content/storage/dropbox.md @@ -59,7 +59,7 @@ curl -fsS -X POST \ | Query param | | Description | |---|---|---| -| `project` | required | Project sid (the stable slug, e.g. `acme`) the upload is authorized and billed against | +| `project` | required | Project sid (the stable slug, e.g. `acme`) — or the numeric project ID — the upload is authorized and billed against | | `ttl` | optional | Lifetime in days, 1–7 (default 1) | | `filename` | optional | Name recorded in `Content-Disposition` for the download |