Add an IMDB listener that catch imdb link and display somes infos regarding the movies
As IMDB no longer have a plublic API we use http://www.myapifilms.com/.
We extract the IMDB id from a link, example http://www.imdb.com/title/tt1567432/ to perform a request
http://www.myapifilms.com/imdb?format=JSON&lang=en-us&actors=S&idIMDB=tt1567432
The listener only display the title, year, rating and the first 3 actors of the movie/tv show.
As some link may refer to upcoming movies (without known title, year, rating or cast) I had to handle it using if blocks, but it doesn't really looks nice.
Example result
↳ Teen Wolf (2011– ) 7.8★ - Tyler Posey, Dylan O'Brien, Holland Roden,
Add an IMDB listener that catch imdb link and display somes infos regarding the movies As IMDB no longer have a plublic API we use http://www.myapifilms.com/.
We extract the IMDB id from a link, example
http://www.imdb.com/title/tt1567432/
to perform a requesthttp://www.myapifilms.com/imdb?format=JSON&lang=en-us&actors=S&idIMDB=tt1567432
The listener only display the title, year, rating and the first 3 actors of the movie/tv show.
As some link may refer to upcoming movies (without known title, year, rating or cast) I had to handle it using if blocks, but it doesn't really looks nice.
Example result