@dnode/request-maxdome
v4.4.1
Published
[![dependencies | 1 | 61](https://img.shields.io/badge/dependencies-1%20|%2061-blue.svg)](DEPENDENCIES.md)
Downloads
53
Readme
Usage
Attention: @dnode/request-maxdome
will use several information from the package.json
and add them to the headers. This makes it easier to identify the source of the request in the logs of maxdome if there are issues.
The information which will be used:
- user-agent:
${app.name} v${app.version} via ${lib.name} v${lib.version}
Initialize with useful environment variables
apikey
and appid
are only needed if there are requests with another platform as webportal
. hostname
and protocol
has the production api (https://heimdall.maxdome.de) as default.
const maxdome = require('@dnode/request-maxdome').getRequestBuilder({
maxdomeOptions: {
apikey: process.env.MAXDOME_APIKEY,
appid: process.env.MAXDOME_APPID,
}
});
Get information for a specific asset by ID
const maxdome = require('@dnode/request-maxdome').getRequestBuilder();
const AssetOptions = require('@dnode/request-maxdome').AssetOptions;
const assetId = 'assetId';
const assets = await maxdome.send(new AssetOptions(assetId));
Search assets by title and get the first 3 results
const maxdome = require('@dnode/request-maxdome').getRequestBuilder();
const AssetsQueryOptions = require('@dnode/request-maxdome').AssetsQueryOptions;
const title = 'title';
const assetsQueryOptions = new AssetsQueryOptions()
.addFilter('contentTypeSeriesOrMovies')
.addFilter('search', title)
.addQuery('pageSize', 3);
const assets = await maxdome.request('assets').send(assetsQueryOptions);
Get the 50 newest store movies
const maxdome = require('@dnode/request-maxdome').getRequestBuilder();
const AssetsQueryOptions = require('@dnode/request-maxdome').AssetsQueryOptions;
const assetsQueryOptions = new AssetsQueryOptions()
.addFilter('availableWithoutPackage')
.addFilter('movies')
.addFilter('new')
.addFilter('notUnlisted')
.addQuery('pageSize', 50)
.addSort('activeLicenseStart', 'desc');
const assets = await maxdome.request('assets').send(assetsQueryOptions);