使用youtube Data API - 视频:对于使用contentDetails.contentRating.ytRating的一些视频,显示视频为ytAgeRestricted。
但是,在限制模式下阻止的大多数视频在JSON中没有contentRating。 E.g:
https://www.googleapis.com/youtube/v3/videos?part=contentDetails&id=vBkBS4O3yvY&key={API_KEY}
仅返回以下内容:
{
"kind": "youtube#videoListResponse",
"etag": "\"abQHWywil_AkNqdqji7_FqiK-u4/MGunVBb8A5UKg1uOrK7QknvhVZ8\"",
"pageInfo": {
"totalResults": 1,
"resultsPerPage": 1
},
"items": [
{
"kind": "youtube#video",
"etag": "\"abQHWywil_AkNqdqji7_FqiK-u4/n1iZ1JVdolHHrm8Nd2wvTRcfe5s\"",
"id": "vBkBS4O3yvY",
"contentDetails": {
"duration": "PT5M41S",
"dimension": "2d",
"definition": "hd",
"caption": "false",
"licensedContent": true
}
}
]
}