获取创意物料详情接口
HTTP请求方式
GET
请求地址
https://api.e.360.cn/display/banner/getmaterialscontent
字段 |
类型 |
必须 |
描述 |
Content-Type |
string |
yes |
application/json |
apiKey |
string |
yes |
注册时分配到的api key,该参数作为HTTP HEAD字段传递。 |
accessToken |
string |
yes |
访问token |
Body 请求参数
字段 |
类型 |
必须 |
描述 |
imageIds |
[]int |
no |
图片ID数组 |
videoIds |
[]int |
no |
视频ID数组 |
titleIds |
[]int |
no |
标题ID数组 |
请求示例
curl --location --request POST 'https://api.e.360.cn/display/banner/getmaterialscontent' \
--header 'apiKey:APIKEY' \
--header 'accessToken:ACCESSTOKEN' \
--header 'Content-Type: application/json' \
--data-raw '{
"imageIds":[6253119111, 6253120],
"videoIds":[245988, 245989, 245988111],
"titleIds": [152090612, 152090613, 152090614]
}'
返回结果
{
"errmsg": "OK",
"errno": 0,
"data": {
"imageUrls": [
{
"id": 6253119111,
"errno": 2002090,
"message": "创意物料不存在"
},
{
"id": 6253120,
"content": "https://s3m.mediav.com/test/3b264b73cb4cbbb61f31ccf90d8aeb35.jpg",
"errno": 2000000,
"message": "成功"
}
],
"titles": [
{
"id": 152090612,
"content": "着急!每天一贴,告别前列问题5555",
"errno": 2000000,
"message": "成功"
},
{
"id": 152090613,
"content": "增生,不要怕!无论多严重,用它远离",
"errno": 2000000,
"message": "成功"
},
{
"id": 152090614,
"content": "让爱更有温度,为TA定制一份IT速度法速度法",
"errno": 2000000,
"message": "成功"
}
],
"videoUrls": [
{
"id": 245988,
"content": "https://live-s3m.mediav.com/nativevideo/3422119740-016962a65f0f4e35b02679463478abc7.mp4",
"errno": 2000000,
"message": "成功"
},
{
"id": 245989,
"content": "https://live-s3m.mediav.com/nativevideo/3422119740-fe63527d57bd4bd2926c9caf9d1272d9.mp4",
"errno": 2000000,
"message": "成功"
},
{
"id": 245988111,
"errno": 2002090,
"message": "创意物料不存在"
}
]
}
}
返回结果说明
字段 |
类型 |
描述 |
errno |
int |
错误码参见errorCode.md |
id |
int |
图片/视频/标题ID |
content |
string |
图片/视频/标题详情 |