Quatrix JavaSctipt APIs
Space shortcuts
Quatrix JavaSctipt APIs QJA

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Parameters 

 

Name TypeDescription

id

required

string

download page id

cb

passwordcb

password

password for download page, if this page under password protection

optional

functioncallback function



Example Result

Code Block
languagejs
this.downloadPageMeta = function(id, password, cb) {
  return _request({
    method: 'GET',
    url: '/is/download_info/' + id + preparePasswordUrl(password),
    callback: cb
  });
};

 

 

Quatrix JavaSctipt APIs QJA