如何获取 itunes 播客中的电影列表
我在 itunes 上有一个播客链接,如下所示:http://itunes.apple.com/pl/podcast/[name]/[id]。 我如何从该播客中获取电影列表。 我可以看到两种方式。首先是解析 html 以检索信息。其次,更好的是使用 itunes api (http://www.apple.com/itunes/affiliates/resources/documentation/itunes-store-web-service-search-api.html)。但是我无法使用这个 api,所以它返回某些播客的电影列表。有人可以提供指导吗?
I have a link to podcast on itunes that looks like this: http://itunes.apple.com/pl/podcast/[name]/[id].
How can I get list of movies from that podcast.
I can see two ways. First is parsing html to retrieve informations. Second, much better, is using itunes api (http://www.apple.com/itunes/affiliates/resources/documentation/itunes-store-web-service-search-api.html). However i am not able to use this api, so it returns list of movies from certain podcast. Can anybody provide guidelines?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Itunes 播客是从 rss feed 生成的。该提要的地址可以在 itunes 页面源中找到。最好的方法是解析此提要并提取所有需要的数据。
Itunes podcast is generated from rss feed. Address to this feed can be found in itunes page source. The best way is to just parse this feed and extract all needed data.