Answers:
IMDb具有一个公共API,尽管未记录,但它是快速且可靠的(通过AJAX在官方网站上使用)。
imdb${searchphrase}
格式)。或者,可以通过本地代理剥离或替换填充。// 1) Vanilla JavaScript (JSON-P)
function addScript(src) { var s = document.createElement('script'); s.src = src; document.head.appendChild(s); }
window.imdb$foo = function (results) {
/* ... */
};
addScript('https://sg.media-imdb.com/suggests/f/foo.json');
// 2) Using jQuery (JSON-P)
jQuery.ajax({
url: 'https://sg.media-imdb.com/suggests/f/foo.json',
dataType: 'jsonp',
cache: true,
jsonp: false,
jsonpCallback: 'imdb$foo'
}).then(function (results) {
/* ... */
});
// 3) Pure JSON (with jQuery)
// Use a local proxy that strips the "padding" of JSON-P,
// e.g. "imdb$foo(" and ")", leaving pure JSON only.
jQuery.getJSON('/api/imdb/?q=foo', function (results) {
/* ... */
});
// 4) Pure JSON (ES2017 and Fetch API)
// Using a custom proxy at "/api" that strips the JSON-P padding.
const resp = await fetch('/api/imdb/?q=foo');
const results = await resp.json();
请注意,这些API是非官方的,并且随时可能更改!
更新(2019年1月):高级API不再存在。好消息是,Suggesions API现在也支持按电影标题和演员姓名搜索的“高级”功能。
if (ua.i) { c.img = { src: ua.i[0].replace("._V1_.jpg", "._V1._SX40_CR0,0,40,54_.jpg"), width: 40, height: 54 } }
。
新API @ http://www.omdbapi.com
编辑:由于法律问题不得不将服务移至新域:)
IMDB本身似乎在分发数据,但仅在文本文件中:
http://www.imdb.com/interfaces
您可以通过多种API来使用Google。明确禁止刮屏。官方的API似乎正在开发中,但是已经有很多年了。
获取电影信息的另一种合法选择是Rotten-Tomatoes API(由Fandango提供)。
TMDb API呢?
您可以使用imdb_id搜索 GET /find/{external_id}
有一个JSON API供移动应用程序使用,网址为 http://app.imdb.com上
但是,警告相当严重:
仅供IMDb书面授权的客户使用。
未经授权客户的作者和用户对其行为承担全部法律责任。
我想这是为那些需要付费才能通过其API访问数据的开发人员准备的。
编辑:只是为了踢,我写了一个客户端库试图从API读取数据,您可以在这里找到它: api-imdb
显然,您应该注意警告,实际上,请使用TheMovieDB之类的东西用作更好和更开放的数据库。
然后,您可以使用此Java API包装器(由我编写):api-themoviedb
https://deanclatworthy.com/tools.html是IMDB API,但由于滥用而被关闭。
那值得一提的danclatworthy似乎仍然有效,还有另外一个:http://imdbapi.poromenos.org/
这是一个简单的解决方案,可根据来自Krinkle的查询按名称获取显示:
您可以通过让服务器获取URL而不是尝试直接使用AJAX直接获取URL来解决同源策略,而不必使用JSONP做到这一点。
Javascript(jQuery):
function getShowOptionsFromName (name) {
$.ajax({
url: "ajax.php",
method: "GET",
data: {q: name},
dataType: "json"
}).done(function(data){
console.log(data);
});
}
PHP(在ajax.php文件中):
$q = urlencode($_GET["q"]);
echo file_get_contents("http://www.imdb.com/xml/find?json=1&nr=1&tt=on&q=$q");
好的,我发现了这只IMDB刮板
适用于C#:http: //web3o.blogspot.de/2010/11/aspnetc-imdb-scraping-api.html
此处的PHP:http : //web3o.blogspot.de/2010/10/php-imdb-scraper-for-new-imdb-template.html
或者是针对c#的imdbapi.org实现:
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Xml.Linq;
using HtmlAgilityPack; // http://htmlagilitypack.codeplex.com/
public class IMDBHelper
{
public static imdbitem GetInfoByTitle(string Title)
{
string url = "http://imdbapi.org/?type=xml&limit=1&title=" + Title;
HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create(url);
req.Method = "GET";
req.UserAgent = "Mozilla/5.0 (Windows; U; MSIE 9.0; WIndows NT 9.0; en-US))";
string source;
using (StreamReader reader = new StreamReader(req.GetResponse().GetResponseStream()))
{
source = reader.ReadToEnd();
}
HtmlDocument doc = new HtmlDocument();
doc.LoadHtml(source);
XDocument xdoc = XDocument.Parse(doc.DocumentNode.InnerHtml, LoadOptions.None);
imdbitem i = new imdbitem();
i.rating = xdoc.Descendants("rating").Select(x => x.Value).FirstOrDefault();
i.rating_count = xdoc.Descendants("rating_count").Select(x => x.Value).FirstOrDefault();
i.year = xdoc.Descendants("year").Select(x => x.Value).FirstOrDefault();
i.rated = xdoc.Descendants("rated").Select(x => x.Value).FirstOrDefault();
i.title = xdoc.Descendants("title").Select(x => x.Value).FirstOrDefault();
i.imdb_url = xdoc.Descendants("imdb_url").Select(x => x.Value).FirstOrDefault();
i.plot_simple = xdoc.Descendants("plot_simple").Select(x => x.Value).FirstOrDefault();
i.type = xdoc.Descendants("type").Select(x => x.Value).FirstOrDefault();
i.poster = xdoc.Descendants("poster").Select(x => x.Value).FirstOrDefault();
i.imdb_id = xdoc.Descendants("imdb_id").Select(x => x.Value).FirstOrDefault();
i.also_known_as = xdoc.Descendants("also_known_as").Select(x => x.Value).FirstOrDefault();
i.language = xdoc.Descendants("language").Select(x => x.Value).FirstOrDefault();
i.country = xdoc.Descendants("country").Select(x => x.Value).FirstOrDefault();
i.release_date = xdoc.Descendants("release_date").Select(x => x.Value).FirstOrDefault();
i.filming_locations = xdoc.Descendants("filming_locations").Select(x => x.Value).FirstOrDefault();
i.runtime = xdoc.Descendants("runtime").Select(x => x.Value).FirstOrDefault();
i.directors = xdoc.Descendants("directors").Descendants("item").Select(x => x.Value).ToList();
i.writers = xdoc.Descendants("writers").Descendants("item").Select(x => x.Value).ToList();
i.actors = xdoc.Descendants("actors").Descendants("item").Select(x => x.Value).ToList();
i.genres = xdoc.Descendants("genres").Descendants("item").Select(x => x.Value).ToList();
return i;
}
public class imdbitem
{
public string rating { get; set; }
public string rating_count { get; set; }
public string year { get; set; }
public string rated { get; set; }
public string title { get; set; }
public string imdb_url { get; set; }
public string plot_simple { get; set; }
public string type { get; set; }
public string poster { get; set; }
public string imdb_id { get; set; }
public string also_known_as { get; set; }
public string language { get; set; }
public string country { get; set; }
public string release_date { get; set; }
public string filming_locations { get; set; }
public string runtime { get; set; }
public List<string> directors { get; set; }
public List<string> writers { get; set; }
public List<string> actors { get; set; }
public List<string> genres { get; set; }
}
}
如果您想要电影详细信息API,可以考虑
OMDB API是开放电影数据库,它返回IBDB评分,IMDB投票,您也可以包括烂番茄评分。
否则你可以使用
My Api Films允许您使用IMDB ID进行搜索并返回详细信息,但是它具有请求限制。
这是一个提供API的Python模块,可从IMDB网站获取数据