node-flowdock icon indicating copy to clipboard operation
node-flowdock copied to clipboard

Download a file

Open bradintheusa opened this issue 8 years ago • 0 comments

Does anyone have a sample to download a file? I am getting a 400 error on the redirect to Amazon

            session.get(message.attachments[0].path, {},function(e,data) {
                var attachment = fs.createWriteStream("./Activity/" + message.id + "_" + message.attachments.file_name, { flags: 'a' });
                attachment.write(data);
            });

bradintheusa avatar May 02 '16 19:05 bradintheusa