Can I schedule YouTube videos for release via the API? And other 'limited' feature questions

痞子三分冷 提交于 2019-12-04 18:15:48

1) Setting custom thumbnails is via thumbnails->set call.

code samples: java php python

2) Scheduled videos are requested in issue tracker and work in progress.

3) All monetization options are in Content ID API.

It is possible to schedule videos with the Youtube API v3.0.

When uploading via the insert method, videos can be scheduled by setting status.privacyStatus to "private"and setting status.publishAt to a string in the ISO 8601 format specifying the date and time when the video will go public.

For example, if I wanted my video to be uploaded on November 1st, 2015 at 8:20 AM local time, my date/time string would look like "2015-11-01T8:20:00.000+00:00"

More information with code samples can be found here.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!