get_signed_url
Generate temporary signed URLs for Tencent Cloud COS objects to provide secure, time-limited access to cloud storage files without exposing permanent credentials.
Instructions
获取COS对象的临时签名URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
expire_time | No | URL有效期(秒),默认3600秒 | |
object_key | Yes | COS中的对象键名 |
Input Schema (JSON Schema)
{
"properties": {
"expire_time": {
"description": "URL有效期(秒),默认3600秒",
"type": "number"
},
"object_key": {
"description": "COS中的对象键名",
"type": "string"
}
},
"required": [
"object_key"
],
"type": "object"
}