获取文件路径
获取文件路径
请求说明
请求地址 | https://openapi.wps.cn/v7/drives/{drive_id}/files/{file_id}/path |
---|---|
请求方法 | GET |
签名方式 | KSO-1 |
权限要求 | 查询和管理文件(用户授权) kso.file.readwrite 查询文件(用户授权) kso.file.read 查询和管理文件(应用授权) kso.file.readwrite 查询文件(应用授权) kso.file.read |
请求头(Header)
Header 名称 | 参数类型 | 是否必填 | 说明 |
---|---|---|---|
Content-Type | string | 是 | 使用:application/json |
X-Kso-Date | string | 是 | RFC1123 格式的日期,例: Wed, 23 Jan 2013 06:43:08 GMT |
X-Kso-Authorization | string | 是 | KSO-1 签名值,详见《签名方法》 |
Authorization | string | 是 | 授权凭证,格式为:Bearer {access_token} |
路径参数(Path)
名称 | 参数类型 | 说明 |
---|---|---|
drive_id | string | 驱动盘 id |
file_id | string | 文件 id |
请求地址示例
[GET] https://openapi.wps.cn/v7/drives/{drive_id}/files/{file_id}/path
响应体
名称 | 参数类型 | 说明 |
---|---|---|
code | integer | 响应代码。非 0 表示失败,参照《状态码说明》 |
msg | string | 响应信息 |
data | object | 响应数据 |
∟ location_id | string | 文件位置标识 当 location_type 分别为 user , group , link 时,对应的 location_id 分别为 user_id , group_id , 空串 |
∟ location_type | string[enum] | 文件位置类型 link :分享;user :个人文档;group :团队文档;roaming :自动漫游;app |
∟ paths | array[object] | 文件路径 |
∟ ∟ file_id | string | 文件 id |
∟ ∟ name | string | 文件名 |
more | object | 更多的错误信息 |
响应体示例
json
{
"code": 0,
"data": {
"location_id": "string",
"location_type": "string[enum]",
"paths": [
{
"file_id": "string",
"name": "string"
}
]
},
"msg": "string"
}