Reply to thread

Well, it seems your right. it might be possible in TMDB API to add Imdb Id instead of TMDB Id.

Have a look on first page and set API_IMDB_LOOKUP to true

 

[CODE=C#]

        #region<<TMDB_PARAMETERS>>

        public const bool API_IMDB_LOOKUP = false; //IMDB LookUp

        public const string API_KEY = "......................."; //Insert API Key

        public const string API_LANG = "fr"; //Change it to change Language

        private const string API_BaseUrl = "http://api.themoviedb.org/3/";

        #endregion<<TMDB_PARAMETERS>>

[/CODE]


Top Bottom