我的应用内的 YouTube 搜索页面

发布于 2024-12-24 18:54:06 字数 530 浏览 3 评论 0原文

在我的应用程序中有两个文本字段,您可以在其中在 YouTube 上执行搜索。 生成的最终搜索字符串如下所示:

@"http://www.youtube.com/results?search_query=shakira+%22waka+waka%22&showsearch=0";

我将其传递给 WebView 并且:

NSURL *url = [NSURL URLWithString:webaddress];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[self.webView loadRequest:requestObj];

这就是显示的内容:

在此处输入图像描述

是否可以避免显示搜索框、其他搜索参数(结果类型、上传),而仅显示检索到的视频列表?

预先感谢,亚萨

in my app there are two textfield where you can perform a search on youtube.
The final search string produced is like the following:

@"http://www.youtube.com/results?search_query=shakira+%22waka+waka%22&showsearch=0";

I pass it to a WebView and:

NSURL *url = [NSURL URLWithString:webaddress];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[self.webView loadRequest:requestObj];

This is what is displayed:

enter image description here

Is it possible to avoid display of search box, other search parameters (result type, uploaded) and display instead only a list of the retrieved videos?

Thank in advance, yassa

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

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

发布评论

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

评论(1

赢得她心 2024-12-31 18:54:06

您必须使用 YouTube Data API(通过 Google API)来执行此操作。

通过该 API,您可以进行查询并获取 YouTube 搜索结果列表,其中包含视频 ID、缩略图、标题、描述、上传者等。

一般 YouTube API 详细信息为 此处

对于 Google API for iOS,您会找到相关说明此处
API 中包含一些 API 示例,您也可以参考。

You'll have to use the YouTube Data API (via the Google API) to do this.

w/ the API you can make a query and get back a list of YouTube Search Results which contain a video ID, thumbnails, title, description, uploader, etc.

General YouTube API details are here.

For the Google API for iOS, you'll find instructions here.
The API contains some examples in the API you can refer to as well.

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