1.1.3 • Published 12 months ago

jdownloader-api v1.1.3

Weekly downloads
2
License
ISC
Repository
-
Last release
12 months ago

Node Jdownloader API

A NodeJS wrapper for My.jdownloader.org API

https://my.jdownloader.org/developers/

This is a rewritten version of this PHP wrapper https://github.com/tofika/my.jdownloader.org-api-php-class

Features

  • Connect to the My.JDownloader service
  • Reconnect
  • Disconnect from the My.JDownloader service
  • List Devices
  • Add Links and start download
  • List actual links from the download are
  • List all packages and get current download status

Usage

To install jdownloader-api in your node.js project:

npm install jdownloader-api

And to access it from within node, simply add:

const jdownloaderAPI = require('jdownloader-api');

API

Connect

jdownloaderAPI.connect(_USERNAME_, _PASSWORD_)

Disconnect

jdownloaderAPI.disconnect()

Reconnect

jdownloaderAPI.reconnect()

listDevices

// List all active devices from the connected account
// deviceName and deviceId
jdownloaderAPI.listDevices()

addLinks

// This will add links to the device and autostart downloads if 
// autostart parameter is true otherwise it will leave the package in the linkGrabber
// nb : links must be comma separated
jdownloaderAPI.addLinks(LINKS, DEVICEID, true(autostart))

queryLinks

// List all links from the download area of the specified device
jdownloaderAPI.queryLinks(DEVICEID)

queryPackages

// List all packages from the download area of the specified device
// current status, total bytes loaded, etc ...
// nb : packagesUUIS must be comma separated you can get them from the queryLinks method
jdownloaderAPI.queryPackages(DEVICEID, PACKAGESUUIDS)
1.1.3

12 months ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

6 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago