URL: /api/open/api/appTag/batchUpdateAppTag
Type: POST
Author: Wu Tai Bing
Content-Type: application/json; charset=utf-8
Description: 更新作品标签
Body-parameters:
Parameter | Type | Required | Description |
---|---|---|---|
opfid | string | true | 开放平台ID |
nonce | string | true | 6位随机字串不能为空 |
timestamp | string | true | 签名时间戳 |
signature | string | true | 签名 |
appId | string | true | 作品id |
uid | string | true | 第三方用户id |
companyId | string | true | 第三方公司id |
tagIds | array | true | 作品标签ID |
Request-body:
{
"companyId":"13512345677",
"nonce":"123568",
"opfid":"35960258800937668784",
"timestamp":"2023-05-19 14:33:20",
"signature":"85o6vr",
"tagIds":[1128387102067810304,12231231231231231],
"appId":"c98f4b7d-9768-4bce-976a-3ccdadaac243",
"uid":"13512345677"
}
Response-fields:
Field | Type | Description | Since |
---|---|---|---|
code | string | 状态码 | - |
errorCode | string | 错误状态码 | - |
msg | string | 状态描述 | - |
Response-example:
{
"code": "90209",
"errorCode": "90209",
"msg": "4rz9wa",
}
Curl-example:
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -i /api/open/api/appTag/batchUpdateAppTag --data '{
"companyId":"13512345677",
"nonce":"123568",
"opfid":"35960258800937668784",
"timestamp":"2023-07-11 14:33:20",
"signature":"85o6vr",
"tagIds":[1128387102067810304,12231231231231231],
"appId":"c98f4b7d-9768-4bce-976a-3ccdadaac243",
"uid":"13512345677"
}'