如何撤消此视频列表?
foreach (string file in httpRequest.Files)
{
var postedFile = httpRequest.Files[file];
var fileextension =new FileInfo(postedFile.FileName).Extension();
var filePath = HttpContext.Current.Server.MapPath("~/yourFileName." + fileextension);
postedFile.SaveAs(filePath);
}
我需要最新的! (通过发布排序最新的第一个)
答案 0 :(得分:2)
不幸的是,playlistItems不支持此功能。 您可以尝试阅读整个播放列表并自己进行排序。
答案 1 :(得分:-1)
https://developers.google.com/youtube/2.0/developers_guide_protocol
将orderby = time添加到您的网址
https://www.googleapis.com/youtube/v3/playlistItems?part=snippet&playlistId=PLYQWoSxgWOXMjtLQJIikS56pu7eJusSKW&maxResults=25&pageToken=CB4QAA&key=AIzaSyDEm5wGLsWi2G3WG40re-DAJcWioQSpJ6o&orderby=time
答案 2 :(得分:-1)
您需要在REST API调用中使用 order 参数来获取视频的某些特定顺序。正如您的问题所述,您需要按排序顺序获取数据,其中最近发布的数据应位于顶部。因此,您需要在REST API调用中将order的值设置为 date 。支持的其他值,评级,相关性(默认情况下),title,videoCount和ViewCount。
有关其他详细信息,请阅读官方documentation以及try网络服务。