File size: 695 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
// Configuration for IMDB
// To se the latest configuration fetch it from https://api.themoviedb.org/3/configuration?api_key=019e8f375549e0bbd4a4191862ebc88f
const API_URL = 'https://api.themoviedb.org/3/';
const API_KEY = '844dba0bfd8f3a4f3799f6130ef9e335';
// 019e8f375549e0bbd4a4191862ebc88f
// Images
// An image URL looks like this example:
// http://image.tmdb.org/t/p/w780/bOGkgRGdhrBYJSLpXaxhXVstddV.jpg
const IMAGE_BASE_URL ='http://image.tmdb.org/t/p/';
//Sizes: w300, w780, w1280, original
const BACKDROP_SIZE = 'w1280'
// w92, w154, w185, w342, w500, w780, original
const POSTER_SIZE = 'w500'
export {
API_URL,
API_KEY,
IMAGE_BASE_URL,
BACKDROP_SIZE,
POSTER_SIZE
} |