| 名称 | 类型 | 描述 |
|---|---|---|
| list | struct[] | 素材标签列表,数组长度为[0,100] |
| image_id | int64 | 素材 id |
| media_id | string | 素材 id |
| label_list | struct[] | 标签信息列表,数组长度为[0,100] |
| level_id | integer | 标签 id |
| label_name | string | 标签名称 |
| first_material_label_level_id | integer | 标签 id |
| first_material_label_level_name | string | 标签名称 |
| second_material_label_level_id | integer | 标签 id |
| second_material_label_level_name | string | 标签名称 |
curl --location --request POST '/v1.3/material_labels/get' \
--header 'access_token: <ACCESS_TOKEN>' \
--header 'timestamp: <TIMESTAMP>' \
--header 'nonce: <NONCE>' \
--data-urlencode 'account_id=<ACCOUNT_ID>' \
--data-urlencode 'image_id_list=[]' \
--data-urlencode 'media_id_list=[]'{
"code": 0,
"message": "",
"message_cn": "",
"data": {
"list": [
{
"label_list": []
}
]
}
}