寻求有关 YQL 电影放映时间的帮助
我一直在使用未记录的雅虎电影 API,直到几天前它被撤下,所以我正在寻找另一种方法来检索本地电影放映时间(最好是剧院)。我在 SO 上找到了关于 YQL 数据表的 此帖子 ,最后一篇文章看起来确实很有希望。我似乎不知道如何查询数据以返回本地电影和放映时间。我一直在尝试“SELECT * from movie.showtimes where location='myzip'”的变体,但没有成功。有什么想法吗?
I had been using the undocumented Yahoo movies API until it was pulled a few days ago, so I'm looking for another way to retrieve local movie showtimes (ideally by theater). I found this thread about YQL datatables on SO, and the last post looked really promising. I just can't seem to figure out how to query the data to return local movies and showtimes. I've been trying variations on "SELECT * from movies.showtimes where location='myzip'" with no success. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
select * from movie.showtimes
获取所有电影的列表。然后:
您也可以这样做
,不幸的是,没有按位置列出的列表
select * from movies.showtimes
To get a list of all movies. Then:
You could also do
There's no list by location, unfortunately