Answer the question
In order to leave comments, you need to log in
Why is node.js not sending the file?
let form = new FormData()
form.append('photo', fs.createReadStream('tmp.jpg'))
await fetch(server.upload_url, {
method: 'POST',
body: form,
headers: { 'Content-Type': 'multipart/form-data' }
})
Answer the question
In order to leave comments, you need to log in
What fetch is used? Node.js needs a separate package, because by regular fetch - browser
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question