@maxdome/request-maxdome
v6.0.2
Published
**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
Downloads
21
Keywords
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
hostname
and protocol
has the production api (https://heimdall.maxdome.de) as default.
const maxdome = require('@dnode/request-maxdome').getRequestBuilder();
Get information for a specific asset by ID
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 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 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);