google api - get the title on live video in youtube using API YouTube V3 -




i using api live streaming youtube retrieve list of live chat messages on youtube video using id_video, exits serveral properties appear in resource such snippet.livechatid, snippet.displaymessage can found them ressource, question how can title on live video in channel youtube not me ? thanks

you may want check documentation. items[] property return list of live streams match request criteria.

{   ...   },   "items": [     livestream resource   ] } 

the following json structure shows format of livestreams resource:

{   "kind": "youtube#livestream",   "etag": etag,   "id": string,   "snippet": {     "publishedat": datetime,     "channelid": string,     "title": string,     "description": string,     "isdefaultstream": boolean   },   ... } 




wiki

Comments

Popular posts from this blog

Asterisk AGI Python Script to Dialplan does not work -

python - Read npy file directly from S3 StreamingBody -

kotlin - Out-projected type in generic interface prohibits the use of metod with generic parameter -