接口介绍
生成一个临时的预签名的Url,没有权限访问集群的用户可以通过该Url上传文件到集群(通过http的post方式)
接口约束
支持的线上资源池 :上海7、南京3、南京5、杭州2、合肥2、九江、广州6、武汉4、福州25、厦门3、郴州2、海口2、北京5、雄安2、石家庄20、内蒙6、晋中、辽阳1、西安5、乌鲁木齐4、乌鲁木齐27、中卫5、兰州2、西宁2、拉萨3、昆明2、重庆2、成都4、贵州3、上海33、宁波边缘云、华东1、上海36、南昌5、青岛20、武汉41、长沙42、长沙37、南宁23、北京行业云20、华北2、西南1、上海32。
URI
POST /v4/oss/generate-object-upload-link
请求参数
请求体 JSON Body 参数
参数 | 是否必填 | 参数类型 | 说明 | 示例 |
---|---|---|---|---|
regionID | 是 | String | 区域 ID | 332232eb-63aa-465e-9028-52e5123866f0 |
bucket | 是 | String | 桶名 | bucket1 |
key | 是 | String | 对象名 | myobject |
expiresIn | 否 | Integer | url 过期时间,默认 3600 | 3300 |
响应参数
参数 | 参数类型 | 说明 | 示例 |
---|---|---|---|
returnObj | Object | 响应对象 | 见下级对象 |
statusCode | Integer | 返回码 取值范围:800 成功 |
800 |
message | String | 状态描述 | SUCCESS |
description | String | 状态描述,一般为中文 | 成功 |
errorCode | String | 业务细分码(仅失败时具有此参数),为product.module.code三段式码 | openapi.userPermission.accessFailed |
表 returnObj
参数 | 参数类型 | 说明 | 示例 |
---|---|---|---|
url | String | URL链接 | https://mybucket.s3.amazonaws.com |
fields | Object | 字段,直接将此参数作为 POST 请求的 form 参数即可,无需关心。 | {"policy": "eyJleHBpcmF0axxxxxxxxxxxxxxxxx9","AWSAccessKeyId": "5XJW4BRAS6L21J80OVUJ","key": "myobject","signature": "munIhlrCc7Y47ezpTcr3xXmgIpU="} |
表 fields
参数 | 参数类型 | 说明 | 示例 |
---|---|---|---|
policy | String | 策略 | xxx |
AWSAccessKeyId | String | ak | xxx |
key | String | 对象名 | xxx |
signature | String | 签名 | xxx |
请求示例
{
"bucket": "bucket1",
"regionID": "332232eb-63aa-465e-9028-52e5123866f0",
"key": "myobject",
"expiresIn": 3300
}
响应示例
{
"returnObj": {
"url": "https://mybucket.s3.ctyun.cn",
"fields": {
"policy": "eyJleHBpcmF0axxxxxxxxxxxxxxxxx9",
"AWSAccessKeyId": "5XJW4BRAS6L21J80OVUJ",
"key": "myobject",
"signature": "munIhlrCc7Y47ezpTcr3xXmgIpU="
}
},
"message": "SUCCESS",
"description": "成功",
"statusCode": 800
}
状态码
状态码 | 描述 |
---|---|
800 | 表示请求成功。 |
900 | 表示请求失败。 |
错误码
errorCode 枚举值,见错误码总表