I am working on the YouTube v3 data API.
I want to know how I can check if a YouTube video has been disconnected or deleted.
for example: https://www.youtube.com/watch?v=dHt_6Z2OaZI
https://www.googleapis.com/youtube/v3/videos?id=dHt_6Z2OaZI &part=snippet,contentDetails,player,statistics,status &key=[mykey]
I do not understand from the API.
{ "kind": "youtube#videoListResponse", "etag": "\"iDqJ1j7zKs4x3o3ZsFlBOwgWAHU/Y7032cCbQSAurzEiVMjdFYzamtg\"", "pageInfo": { "totalResults": 1, "resultsPerPage": 1 }, "items": [ { "kind": "youtube#video", "etag": "\"iDqJ1j7zKs4x3o3ZsFlBOwgWAHU/2FORRsUGqbS1nvQK3AR1PfmiN7I\"", "id": "dHt_6Z2OaZI", "snippet": {}, "contentDetails": { "duration": "PT1H31M1S", "dimension": "2d", "definition": "sd", "caption": "false", "licensedContent": false }, "status": { "uploadStatus": "processed", "privacyStatus": "public", "license": "youtube", "embeddable": true, "publicStatsViewable": true }, "statistics": { "viewCount": "301", "likeCount": "0", "dislikeCount": "0", "favoriteCount": "0", "commentCount": "0" }, "player": { "embedHtml": "<iframe width=\"640\" height=\"360\" src=\"//www.youtube.com/embed/dHt_6Z2OaZI\" frameborder=\"0\" allowfullscreen></iframe>" } } ] }
I tried this
https://www.googleapis.com/youtube/v3/videos ?part=id &key=[mykey] &id=dHt_6Z2OaZI
But it does NOT work, it still gives a result.