I’m going to build a movie website. I found a open movie database : http://www.themoviedb.org/ and I need to get all data into my database.
This site provide an api to get data: http://api.themoviedb.org/2.1
So how can I get all data of this database and insert into my database? Should I do it?
Thanks! I’m using php&mysql.
Rather than copying their entire database (and having to keep it updated, etc.), what about doing this:
This will help keep your database small, and tuned to your traffic.. and it will ensure that you always have the newest data available from TMDb.
Update: there’s even an API call that checks the last updated date of the information. You could store this date in your Database, and use that to verify if your data is still valid.