如果你打开这个视频,你可以看到发布的数据:09/apr/2008
但是如果我通过。net API获取视频,我这样做了:
video.Updated.Year.ToString()
显示2011年。为什么?
如果你看到XML你可以看到
<published>2008-04-09T18:32:39.000Z</published>
<updated>2011-10-30T16:14:02.000Z</updated>
我需要在视频对象上调用什么方法来访问那个字段?
编辑
调用http://gdata.youtube.com/feeds/api/users/zimbarvideo/uploads/?start-index=260&max-results=50&orderby=published
后,我用feed上的video.Updated.Year.ToString()
处理日期
我已经找到了解决方案:只需使用video.YouTubeEntry.Published.Year
。
谢谢!