Skip to content

add api to allow upload progress monitoring #157

@acornejo

Description

@acornejo

This is fairly straightforward to do with superagent (which is used by this sdk).

request
   .post('/files/upload')
   .send(file)
   .on('progress', function(e) {
      console.log(e.percent);
   }

Thus just need to change the API to allow the user to specify a progress callback.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions