访问 Flixster 数据
有什么方法可以访问 Flixster 上的数据吗?具体来说,我想检索我的所有电影评级的列表。我知道您可以获取这些内容的 rss feed,但它似乎只返回所有评级的子集。
Is there any way of accessing the data on Flixster? Specifically, I'd like to retrieve a list of all of my movie ratings. I know you can get an rss feed of these, but it only appears to return a subset of all of the ratings.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
通过访问此 URL 查看您的烂番茄/Flixster 电影评分,首先替换 URL 中的 USERIDHERE。
http://community.flixster.com/api/v1/users/USERIDHERE / ratings.rss
您可以通过点击查看您的个人资料来找到您的用户 ID,该个人资料将在 URL 中包含您的唯一 ID,例如:
http://www.flixster.com/user/USERIDHERE/
View your Rotten Tomatoes / Flixster movie ratings by accessing this URL, first replacing USERIDHERE in the URL.
http://community.flixster.com/api/v1/users/USERIDHERE/ratings.rss
You can find out your user id by clicking to view your Profile, which will contain your unique id in the URL, such as:
http://www.flixster.com/user/USERIDHERE/
是的,http://developer 上有一个新的 Rotten-Tomatoes API。 rottentomatoes.com/docs/read/json/v10/Movie_Reviews
Yes, there is a new-ish Rotten-Tomatoes API at http://developer.rottentomatoes.com/docs/read/json/v10/Movie_Reviews
这是我发现的一个使用 API 的简单程序:
https://github.com/mmihaljevic/flixter
...你可以阅读她的博客文章了解更多信息。
刚刚测试了获取和解析,它似乎仍然有效。
Here's a simple program, using the API, that I've found:
https://github.com/mmihaljevic/flixter
...and you can read her blog post for more information.
Just tested both fetching and parsing, and it still appears to work.