← 返回 Skills 市场
Dropbox Download
作者
foundergraph
· GitHub ↗
· v0.1.0
· MIT-0
91
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install dropbox-download
功能描述
Download a file from Dropbox by providing its file path, returning the file content as binary data.
使用说明 (SKILL.md)
Dropbox Download
Download files from Dropbox using the /2/files/download endpoint.
Description
This skill downloads a file from a user's Dropbox account. It accepts a file path and an optional revision identifier.
IO
| Field | Type | Description |
|---|---|---|
| path | string | The path of the file to download (required) |
| rev | string | Optional revision identifier (deprecated, specify in path instead) |
| result | binary | The downloaded file content |
Configuration
- Integration:
dropbox(OAuth2) - HTTP Method: POST
- Endpoint:
/2/files/download
Usage
from typing import Annotated
def run(
pipedream: Annotated[PipedreamAuth, Integration("dropbox")],
path: Annotated[str, "The path of the file to download."],
rev: Annotated[str | None, "Please specify revision in path instead."] = None,
):
# Track initial props for reload comparison
initial_props = {
"dropbox", "path", "rev",
}
state_manager = PipedreamStateManager(pipedream, "Download File", initial_props, {})
state_manager.add_prop("dropbox", {"authProvisionId": pipedream.auth_provision_id})
state_manager.add_prop("path", path)
rev_config = state_manager.resolve_prop("rev", rev, use_query=False, use_lv=False)
state_manager.add_prop("rev", rev_config)
return state_manager.run()
Notes
- The
revparameter is deprecated; specify revision in the path instead. - The file content is returned as binary data.
- Ensure the Dropbox integration has
files.content.readscope.
License
MIT
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install dropbox-download - 安装完成后,直接呼叫该 Skill 的名称或使用
/dropbox-download触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.0
Initial release: Enables downloading files from Dropbox via API.
- Download files from Dropbox by specifying their path.
- Optionally support revision identifier (deprecated; recommend specifying in path).
- Returns file content as binary data.
- Requires Dropbox OAuth2 integration with files.content.read scope.
元数据
常见问题
Dropbox Download 是什么?
Download a file from Dropbox by providing its file path, returning the file content as binary data. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 91 次。
如何安装 Dropbox Download?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install dropbox-download」即可一键安装,无需额外配置。
Dropbox Download 是免费的吗?
是的,Dropbox Download 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Dropbox Download 支持哪些平台?
Dropbox Download 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Dropbox Download?
由 foundergraph(@foundergraph)开发并维护,当前版本 v0.1.0。
推荐 Skills