在 json 响应中检索附加标签信息
Retrive additional tag info in json response
当我在下面的 bright cove api 上使用 get 方法检索视频元数据时,它会生成 json 包含某些字段的响应。
"https://cms.api.brightcove.com/v1/accounts/510000340001/videos?sort=-updated_at&limit=1&offset=0"
我们如何获得未包含的其他标签,例如输出 json 响应中的 'category' 字段?
我尝试在 url 中添加以下内容,但 api 未检测到。
?custom_field=category
如果视频为该字段设置了值,它将出现在 custom_fields
对象中,如下所示。如果该字段为空,则不会包含在该视频中。
{
"name": "A video",
...
"custom_fields": {
"category": "something"
}
}
当我在下面的 bright cove api 上使用 get 方法检索视频元数据时,它会生成 json 包含某些字段的响应。
"https://cms.api.brightcove.com/v1/accounts/510000340001/videos?sort=-updated_at&limit=1&offset=0"
我们如何获得未包含的其他标签,例如输出 json 响应中的 'category' 字段?
我尝试在 url 中添加以下内容,但 api 未检测到。
?custom_field=category
如果视频为该字段设置了值,它将出现在 custom_fields
对象中,如下所示。如果该字段为空,则不会包含在该视频中。
{
"name": "A video",
...
"custom_fields": {
"category": "something"
}
}