Welcome to the new Box Support website. Check out all the details here on what’s changed.

uploadFile API - can't get to upload video file

New post

Comments

1 comment

  • mwiller

     The error you're seeing does not come from Box, but directly from Node.js — specifically this line:

    var stream = fs.createReadStream(fn);

     

    The Node.js fs built-in module is made for filesystem access; if you want to stream the file from a network service you'll need to use something like https.get() instead.

    0
    Comment actions Permalink

Please sign in to leave a comment.