我的应用内的 YouTube 搜索页面
在我的应用程序中有两个文本字段,您可以在其中在 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:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用 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.