get movie detail, get image and get cast added

This commit is contained in:
Wise Colt
2019-01-01 20:51:53 +03:00
parent 0143454f4d
commit 4e9bfffaee
4 changed files with 183 additions and 54 deletions

View File

@@ -1,8 +1,9 @@
var config= {
// Filexible URL
filexibleURL: 'https://flixable.com/title/',
// Tmdb URL
theMovieDbURL: 'https://api.themoviedb.org/3/find/'
}
module.exports = config;
var config = {
// Filexible URL
filexibleURL: 'https://flixable.com/title/',
// Tmdb URL
theMovieDbURL: 'https://api.themoviedb.org/3/',
// Tmdb image URL
theMovieDbImageURL: 'https://image.tmdb.org/t/p/original/',
}
module.exports = config;