使用asp.net上传Youtube视频
我想从 ASP.NET 应用程序将视频上传到 Youtube。上传视频后应返回视频 ID 或嵌入代码。
I want to upload video to Youtube from my ASP.NET application. It should return video ID or embed code after uploaded video.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
啊,谷歌集成。请注意:这里存在疯狂。
http:// code.google.com/apis/youtube/2.0/developers_guide_protocol.html#Process_Flows_for_Uploading_Videos
非常高的概述:
您
授权后,您可以:
然后,Youtube 向您传回包含 id 以及其他元视频数据的数据。
此时,您需要对其 api 执行额外的 http posts 才能检索嵌入代码。
YouTube 的 api 上传文档列出了 6-13 个步骤,具体取决于您在应用程序中所做的选择。
希望此概述有所帮助!
编辑
这是关于同一件事的另一个问题。它包括代码示例:
如何我可以使用 C# 中的 Youtube API 将视频上传到 YouYube 吗?
Ah, google integration. Be ye warned: here lies madness.
http://code.google.com/apis/youtube/2.0/developers_guide_protocol.html#Process_Flows_for_Uploading_Videos
An extremely high overview:
You will either
After authorization you may either:
Youtube then passes you back data that contains the id as well as other meta video data.
At this point you would need to perform additional http posts to their api in order to retrieve the embed code.
Youtube's api upload documentation lists between 6-13 steps depending on what choices you make in your app.
Hope this overview helps!
Edit
Here is another question on SO about this same thing. It includes code samples:
How can I upload a video to YouYube using the Youtube API in C#?