我正在尝试(php)上传视频(基于浏览器的不在我的应用中存储视频的浏览器想要直接上传到 youtube)。
我找不到任何关于此的文档。例如像这样https://developers.google.com/youtube/2.0/developers_guide_php#Browser_based_Upload
但是对于 v3.0,我正在查看提供的代码(3.0),但看不到不存储(暂时在我的应用程序中)获取视频的方法(即 $videoPath = "/path/to/file.mp4") .
// REPLACE with the path to your file that you want to upload
$videoPath = "/path/to/file.mp4";
// Create a snipet with title, description, tags and category id
$snippet = new Google_VideoSnippet();
$snippet->setTitle("Test title");
$snippet->setDescription("Test description");
$snippet->setTags(array("tag1", "tag2"));