identify-media
Version:
Analyse file path and content to make search criteria for media APIs
15 lines • 389 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const getConfig = (apikey) => {
return {
method: 'GET',
baseURL: 'https://api.themoviedb.org',
params: {
api_key: apikey,
},
url: `/3/configuration`,
responseType: 'json',
};
};
exports.default = getConfig;
//# sourceMappingURL=getConfig.js.map