Skip to content
Eric Dehau edited this page Jan 26, 2016 · 1 revision

Disabling error handler for one request

Set 'X-CLIENT-NOTIFY-ERROR' header to false in your request

  • e.g.
this.getPartUrl = function(id, partNumber, path) {
  return upload(id).get({ part_number: partNumber, path: path }, {'X-CLIENT-NOTIFY-ERROR': false});
};
Clone this wiki locally