如何在 ASP.Net 中检查 Youtube URL?

发布于 2024-12-23 05:30:03 字数 244 浏览 3 评论 0原文

我正在 ASP>Net 网站上工作,我的客户希望当任何用户在他/她的个人资料中插入 youtube URL 时,我的 C# 代码或任何 JQuery 代码或任何 youtube API 代码检查此 URL 是否存在于 youtube.com 上或不。我发现了很多东西,但大多数都为我们提供了字符串匹配器或 URL 模式检查器代码,但我的要求是检查此 URL,即是否存在于 youtube.com 上,并且此视频显示为公共视频。

谁能帮帮我吗......

I am working on ASP>Net site and my client wants when any user insert a youtube URL in his/her profile at that time my c# code or any JQuery Code or any youtube API code check this URL that it is exist on youtube.com or not. I have found many things but most of them give us string matcher or URL pattern checker code but my requirement is check this URL i.e. exist on youtube.com and this video is show for public video.

Can anyone help me out.....

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

真心难拥有 2024-12-30 05:30:03
  1. 将网址模式与 YouTube 视频的已知模式进行匹配请参阅 Stack Overflow 示例
  2. 使用 AJAX调用您的服务器来屏幕抓取输入的 URL,并检查是否有 404 标头或导致“您请求的视频不可用”的典型文本。使用适用于 C# 的 HTML Agility pack

我可以为你写这个,但这需要你付出代价。 :)

  1. Match pattern of URL against known pattern of YouTube video See Stack Overflow example
  2. Use AJAX call to your server to screen scrape the entered URL and check for 404 header or typical text resulting in "The video you have requested is not available." using the HTML Agility pack for c#.

I can write this for you but it will cost you. :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文