getObjectUrl
Generate a signed download URL for files stored in a bucket using the Tencent Cloud COS MCP Server, enabling secure access without manual coding.
Instructions
获取存储桶内的文件的带签名的下载链接
Input Schema
Name | Required | Description | Default |
---|---|---|---|
objectKey | Yes | 文件的路径 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"objectKey": {
"description": "文件的路径",
"type": "string"
}
},
"required": [
"objectKey"
],
"type": "object"
}