I'm building a movie recommendation engine that use TMDB API as it's main movie data provider, I need a way to get tmdb ids via the API if it's possible .
I have plans on providing some ID files here at some point but until then, you can start at id 1 and iterate up until you get the last id provided by the /movie/latest method.
Thank's,
For other that are interested here's how I'm getting ID, since my code is written in python I'm using a file named imdbpy, which returns the IMDB ID for a given person name, after that I'm using that ID with the find endpoint of the tmdb API, that way I can get more infos .
Thank's for the other method Travis, I might use that for the future .
Travis Bell 的回复
于 2016 年 08 月 24 日 9:57下午
Hi hugeburger,
I have plans on providing some ID files here at some point but until then, you can start at id 1 and iterate up until you get the last id provided by the
/movie/latest
method.hugeburger 的回复
于 2016 年 08 月 25 日 7:56上午
Thank's, For other that are interested here's how I'm getting ID, since my code is written in python I'm using a file named imdbpy, which returns the IMDB ID for a given person name, after that I'm using that ID with the find endpoint of the tmdb API, that way I can get more infos .
Thank's for the other method Travis, I might use that for the future .