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
Post a Comment