是否可以使用 jquery 将视频上传到 youtube?
我是 jquery 和 asp.net,c# mvc 技术的新手。我正在建立一个网站,我必须将视频上传到 youtube。任何人都可以帮我提供一个使用 jquery 或 asp.net 从客户端浏览器上传视频的示例代码吗?
提前致谢。
I am new to jquery and asp.net,c# mvc technology. I am building a site in which I have to upload videos to the you tube. Can any one help me in giving a sample code for uploading the video from client browser using jquery or asp.net.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要向
http://uploads.gdata.youtube.com/feeds/api/users//uploads
发送 POST 请求。您还需要提供真实性令牌。请查看 Youtube API 了解更多信息信息。如果您不确定如何通过 jQuery 发送请求,请查看 jQuery 文档 。
You need a POST request to
http://uploads.gdata.youtube.com/feeds/api/users/<youtube_username>/uploads
. You also need to provide an authenticity token.Check out the Youtube API for further information. If you are not sure how to send the request via jQuery also take a look at the jQuery documentation.